Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a Nushell version update script and bump all versions to 0.81.0 #21

Merged
merged 3 commits into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update the version of Nushell to 0.81.0
Command run:
```nu
./scripts/update-nushell-version 0.81.0
```

Sample output:
```nu
2023-06-08T19:56:25.197|INF|updating the badge in the README
2023-06-08T19:56:25.202|INF|updating the `nu-parser` dependency
    Updating crates.io index
      Adding nu-parser v0.81.0 to dependencies.
             Features:
             - nu-plugin
             - plugin
2023-06-08T19:56:26.312|INF|updating the `nu-protocol` dependency
    Updating crates.io index
      Adding nu-protocol v0.81.0 to dependencies.
             Features:
             - plugin
             - serde_json
2023-06-08T19:56:26.815|WRN|do not forget to commit and push this :wink:
```
  • Loading branch information
amtoine committed Jun 8, 2023
commit 330b5650f89654386fe9c95e467031d3c5304b84
33 changes: 14 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ anyhow = "1.0.71"
clap = { version = "4.3.0", optional = true, features = ["unicode", "derive"] }
env_logger = "0.10.0"
log = "0.4.17"
nu-parser = "0.80.0"
nu-protocol = "0.80.0"
nu-parser = "0.81.0"
nu-protocol = "0.81.0"

[dev-dependencies]
criterion = "0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[discord-url]: https://discord.gg/NtAbbGn
[ci-badge]: https://github.com/nushell/nufmt/actions/workflows/main.yml/badge.svg
[ci-url]: https://github.com/nushell/nufmt/actions/workflows/main.yml
[nushell-badge]: https://img.shields.io/badge/nushell-v0.80.0-green
[nushell-badge]: https://img.shields.io/badge/nushell-v0.81.0-green
[nushell-url]: https://crates.io/crates/nu

</div>
Expand Down
Loading