diff --git a/.recent-changelog-entry b/.recent-changelog-entry index dfa7edb2e6..0c1061cac6 100644 --- a/.recent-changelog-entry +++ b/.recent-changelog-entry @@ -1,4 +1,9 @@ -## [0.7.1] - 2024-03-16 +## [0.7.0] - 2024-03-16 + +### 🚀 Features + +- Add --version flag +- Add Nix flake via ipetkov/crane ### 🐛 Bug Fixes diff --git a/CHANGELOG.md b/CHANGELOG.md index cb08a8c847..b0c9a1ce27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,6 @@ All notable changes to this project will be documented in this file. -## [0.7.1] - 2024-03-16 - -### 🐛 Bug Fixes - -- Crate would not build (due to trying to get version via git) - ## [0.7.0] - 2024-03-16 ### 🚀 Features @@ -15,6 +9,10 @@ All notable changes to this project will be documented in this file. - Add --version flag - Add Nix flake via ipetkov/crane +### 🐛 Bug Fixes + +- Crate would not build (due to trying to get version via git) + ## [0.6.3] - 2024-03-13 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 2c0d4007da..e0691857f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -531,7 +531,7 @@ dependencies = [ [[package]] name = "gitu" -version = "0.7.1" +version = "0.7.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 6e46a59e8c..2d15f8263c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitu" description = "A git client inspired by Magit" -version = "0.7.1" +version = "0.7.0" edition = "2021" license = "MIT"