diff --git a/CHANGELOG.md b/CHANGELOG.md index a422ca6..c36d436 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.10.1] - 2023-01-05 + ## [0.10.0] - 2022-10-03 ### Breaking Change @@ -332,7 +334,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - `full` -> `commits` -[Unreleased]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.1...HEAD +[0.10.1]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/gitext-rs/git-branch-stash/compare/v0.9.4...v0.10.0 [0.9.4]: https://github.com/gitext-rs/git-branch-stash/compare/v0.9.3...v0.9.4 [0.9.3]: https://github.com/gitext-rs/git-branch-stash/compare/v0.9.2...v0.9.3 diff --git a/Cargo.lock b/Cargo.lock index ef951eb..aca07bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,7 +263,7 @@ checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189" [[package]] name = "git-branch-stash" -version = "0.9.0" +version = "0.9.1" dependencies = [ "bstr", "eyre", @@ -279,7 +279,7 @@ dependencies = [ [[package]] name = "git-branch-stash-cli" -version = "0.10.0" +version = "0.10.1" dependencies = [ "clap", "clap-verbosity-flag", diff --git a/Cargo.toml b/Cargo.toml index e67da75..58585b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ [package] name = "git-branch-stash-cli" description = "Manage snapshots of your working directory" -version = "0.10.0" +version = "0.10.1" documentation = "https://github.com/gitext-rs/git-branch-stash.git" readme = "README.md" categories = ["command-line-interface", "development-tools"] @@ -58,7 +58,7 @@ yansi = "0.5.1" concolor = "0.0.11" concolor-clap = { version = "0.0.13", features = ["api_unstable"] } -git-branch-stash = { version = "0.9.0", path = "crates/git-branch-stash" } +git-branch-stash = { version = "0.9.1", path = "crates/git-branch-stash" } git2 = { version = "0.15", default-features = false, features = ["vendored-libgit2"] } serde_json = "1" itertools = "0.10" diff --git a/crates/git-branch-stash/Cargo.toml b/crates/git-branch-stash/Cargo.toml index b78f676..302ac05 100644 --- a/crates/git-branch-stash/Cargo.toml +++ b/crates/git-branch-stash/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "git-branch-stash" description = "Manage snapshots of your working directory" -version = "0.9.0" +version = "0.9.1" documentation = "https://github.com/gitext-rs/git-branch-stash.git" categories = ["command-line-interface", "development-tools"] keywords = ["git", "cli"]