diff --git a/.changes/unreleased/Added-20230705-054852.yaml b/.changes/unreleased/Added-20230705-054852.yaml deleted file mode 100644 index 2f4a0fb..0000000 --- a/.changes/unreleased/Added-20230705-054852.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Added -body: Support core.commentChar during restacking. -time: 2023-07-05T05:48:52.57829209-07:00 diff --git a/.changes/unreleased/Changed-20230422-151039.yaml b/.changes/unreleased/Changed-20230422-151039.yaml deleted file mode 100644 index e312260..0000000 --- a/.changes/unreleased/Changed-20230422-151039.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Changed -body: Relicense to GPL-2.0. -time: 2023-04-22T15:10:39.567758078-07:00 diff --git a/.changes/v0.7.0.md b/.changes/v0.7.0.md new file mode 100644 index 0000000..714f84e --- /dev/null +++ b/.changes/v0.7.0.md @@ -0,0 +1,5 @@ +## v0.7.0 - 2023-07-05 +### Added +- Support core.commentChar during restacking. +### Changed +- Relicense to GPL-2.0. diff --git a/CHANGELOG.md b/CHANGELOG.md index 02210ca..570f6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v0.7.0 - 2023-07-05 +### Added +- Support core.commentChar during restacking. +### Changed +- Relicense to GPL-2.0. + ## v0.6.1 (2022-11-07) ### Fixed - Linux binaries should be statically linked. diff --git a/Cargo.lock b/Cargo.lock index a3044e4..a8ef4f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "restack" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "duct", diff --git a/Cargo.toml b/Cargo.toml index f5950b4..a99832f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "restack" -version = "0.6.1" +version = "0.7.0" edition = "2021" description = "Teaches git rebase --interactive about your branches." homepage = "https://github.com/abhinav/restack"