diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d8a1e..a220d88 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.3] - 2023-03-14 + ### Fixes - *(cli)* Fix terminal detection @@ -340,7 +342,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.2...HEAD +[Unreleased]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.3...HEAD +[0.10.3]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.2...v0.10.3 [0.10.2]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.1...v0.10.2 [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 diff --git a/Cargo.lock b/Cargo.lock index 351bfd8..b434337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" [[package]] name = "git-branch-stash" -version = "0.9.2" +version = "0.9.3" dependencies = [ "bstr", "eyre", @@ -296,7 +296,7 @@ dependencies = [ [[package]] name = "git-branch-stash-cli" -version = "0.10.2" +version = "0.10.3" dependencies = [ "anstyle", "anstyle-stream", diff --git a/Cargo.toml b/Cargo.toml index 69dab57..2524117 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.2" +version = "0.10.3" documentation = "https://github.com/gitext-rs/git-branch-stash.git" readme = "README.md" categories = ["command-line-interface", "development-tools"] @@ -59,7 +59,7 @@ concolor-clap = { version = "0.1.0", features = ["api"] } anstyle-stream = "0.2.1" anstyle = "0.3.1" -git-branch-stash = { version = "0.9.2", path = "crates/git-branch-stash" } +git-branch-stash = { version = "0.9.3", path = "crates/git-branch-stash" } git2 = { version = "0.16.1", default-features = false, features = ["vendored-libgit2"] } serde_json = "1.0.85" itertools = "0.10.5" diff --git a/crates/git-branch-stash/Cargo.toml b/crates/git-branch-stash/Cargo.toml index 0dcd07f..b69ae18 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.2" +version = "0.9.3" documentation = "https://github.com/gitext-rs/git-branch-stash.git" categories = ["command-line-interface", "development-tools"] keywords = ["git", "cli"]