diff --git a/CHANGELOG.md b/CHANGELOG.md index adbdc43..7af5cb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # Changelog -## [Unreleased] +## [1.3.5] - 2023-11-02 + +### Fixes + +- don't line-wrap URLs (@keyz) +- fix base branch name for github protected branches (@rockwotj) +- fix clippy warnings (@spacedentist) + +### Improvements + +- turn repository into Cargo workspace (@spacedentist) +- documentation improvements (@spacedentist) +- add shorthand for `--all` (@rockwotj) +- don't fetch all users/teams to check reviewers (@andrewhamon) +- add refname checking (@cadolphs) +- run post-rewrite hooks (@jwatzman) ## [1.3.4] - 2022-07-18 diff --git a/Cargo.lock b/Cargo.lock index 82bff87..83284ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1392,7 +1392,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spr" -version = "1.3.5-beta.1" +version = "1.3.5" dependencies = [ "clap", "console", diff --git a/spr/Cargo.toml b/spr/Cargo.toml index 612d0be..5190ae7 100644 --- a/spr/Cargo.toml +++ b/spr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spr" -version = "1.3.5-beta.1" +version = "1.3.5" authors = ["Sven Over ", "Jozef Mokry "] description = "Submit pull requests for individual, amendable, rebaseable commits to GitHub" repository = "https://github.com/getcord/spr"