diff --git a/CHANGELOG.md b/CHANGELOG.md index d9172ac..278b92d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +### [Unreleased] + +## [0.10.0] - 2024-02-08 + +### Updated + +* Updated for Nushell `0.90.1` Thanks [@g2p](https://github.com/g2p). +* Updated for `bt_bencode` `0.8.0`. + ## [0.9.0] - 2023-12-16 ### Updated @@ -65,7 +74,8 @@ * Initial implementation. -[Unreleased]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.8.1...v0.9.0 [0.8.1]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/bluk/nu_plugin_from_bencode/compare/v0.7.0...v0.8.0 diff --git a/Cargo.lock b/Cargo.lock index 6a694e6..3bc3431 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -817,7 +817,7 @@ dependencies = [ [[package]] name = "nu_plugin_from_bencode" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bt_bencode", "nu-plugin", diff --git a/Cargo.toml b/Cargo.toml index fff5e42..83bb3ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_from_bencode" -version = "0.9.0" +version = "0.10.0" license = "MIT OR Apache-2.0" authors = ["Bryant Luk "] edition = "2021" @@ -11,12 +11,12 @@ repository = "https://github.com/bluk/nu_plugin_from_bencode" documentation = "https://docs.rs/nu_plugin_from_bencode/" readme = "README.md" include = [ - "src/**/*.rs", - "CHANGELOG.md", - "Cargo.toml", - "README.md", - "LICENSE-APACHE", - "LICENSE-MIT", + "src/**/*.rs", + "CHANGELOG.md", + "Cargo.toml", + "README.md", + "LICENSE-APACHE", + "LICENSE-MIT", ] rust-version = "1.70.0" diff --git a/README.md b/README.md index 77f7b44..03ab6d8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A converter plugin from the [bencode][bep_0003] format for [Nushell][nushell]. -The plugin was last tested on nushell version `0.88.1`. +The plugin was last tested on nushell version `0.90.1`. The plugin is unstable as the interface `Nu` for plugins is unstable.