From 57cd85c67cdce42b5a8d5d20389c8f7a49e08208 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 30 Mar 2023 00:50:03 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- crates/git-branch-stash/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f128c05..387b8a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.11.0] - 2023-03-30 + ### Breaking Change - Upgraded `git2` @@ -352,7 +354,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.4...HEAD +[Unreleased]: https://github.com/gitext-rs/git-branch-stash/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.4...v0.11.0 [0.10.4]: https://github.com/gitext-rs/git-branch-stash/compare/v0.10.3...v0.10.4 [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 diff --git a/Cargo.lock b/Cargo.lock index 3ca9e16..8690c72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -285,7 +285,7 @@ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" [[package]] name = "git-branch-stash" -version = "0.9.3" +version = "0.10.0" dependencies = [ "bstr", "eyre", @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "git-branch-stash-cli" -version = "0.10.4" +version = "0.11.0" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 6ba9fd9..7181027 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.4" +version = "0.11.0" 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"] } anstream = "0.2.6" anstyle = "0.3.5" -git-branch-stash = { version = "0.9.3", path = "crates/git-branch-stash" } +git-branch-stash = { version = "0.10.0", path = "crates/git-branch-stash" } git2 = { version = "0.17.0", default-features = false, features = ["vendored-libgit2"] } serde_json = "1.0.95" itertools = "0.10.5" diff --git a/crates/git-branch-stash/Cargo.toml b/crates/git-branch-stash/Cargo.toml index b289722..3f59b31 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.3" +version = "0.10.0" documentation = "https://github.com/gitext-rs/git-branch-stash.git" categories = ["command-line-interface", "development-tools"] keywords = ["git", "cli"]