From 5450e6c9bae40b941b05942bdd78a88e1b9093a6 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Thu, 28 Dec 2023 09:15:06 -0800 Subject: [PATCH] release: release version 0.13.0 Thanks to everyone who's contributed! --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcdfe0174..8a5532770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking changes +### New features + +### Fixed bugs + + +## [0.13.0] - 2024-01-03 + +### Breaking changes + * `jj git fetch` no longer imports new remote branches as local branches. Set `git.auto-local-branch = true` to restore the old behavior. ### New features * Information about new and resolved conflicts is now printed by every command. + * `jj branch` has gained a new `rename` subcommand that allows changing a branch name atomically. `jj branch help rename` for details. @@ -24,6 +34,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 current working directory. [#2414](https://github.com/martinvonz/jj/issues/2414) +### Contributors + +Thanks to the people who made this release happen! + +* Austin Seipp (@thoughtpolice) +* Essien Ita Essien (@essiene) +* Gabriel Scherer (@gasche) +* Ilya Grigoriev (@ilyagr) +* Martin von Zweigbergk (@martinvonz) +* Philip Metzger (@PhilipMetzger) +* Waleed Khan (@arxanas) +* Yuya Nishihara (@yuja) + ## [0.12.0] - 2023-12-05 diff --git a/Cargo.lock b/Cargo.lock index 91622371c..0252bfee5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -870,7 +870,7 @@ dependencies = [ [[package]] name = "gen-protos" -version = "0.12.0" +version = "0.13.0" dependencies = [ "prost-build", ] @@ -1580,7 +1580,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jj-cli" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "assert_cmd", @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "jj-lib" -version = "0.12.0" +version = "0.13.0" dependencies = [ "assert_matches", "async-trait", @@ -2822,7 +2822,7 @@ dependencies = [ [[package]] name = "testutils" -version = "0.12.0" +version = "0.13.0" dependencies = [ "async-trait", "config", diff --git a/Cargo.toml b/Cargo.toml index 3d5b5c691..3eb9e15e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" members = ["cli", "lib", "lib/testutils", "lib/gen-protos"] [workspace.package] -version = "0.12.0" +version = "0.13.0" license = "Apache-2.0" rust-version = "1.71" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix edition = "2021" @@ -102,7 +102,7 @@ zstd = "0.12.4" # put all inter-workspace libraries, i.e. those that use 'path = ...' here in # their own (alphabetically sorted) block -jj-lib = { path = "lib", version = "0.12.0" } +jj-lib = { path = "lib", version = "0.13.0" } testutils = { path = "lib/testutils" } [profile.release]