From 2dcdc7fb3f20f262a73f52019f5a7b7e48fe069d Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 3 Apr 2024 11:06:54 -0700 Subject: [PATCH] release: release version 0.16.0 Thanks to everyone who's contributed! --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 6 +++--- 3 files changed, 47 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8247ed2cf..d4c28ebcf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Deprecations +### Breaking changes + +### New features + +### Fixed bugs + +## [0.16.0] - 2024-04-03 + +### Deprecations + * `jj move` was deprecated in favor of `jj squash`. ### Breaking changes @@ -70,6 +80,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed bugs +None. + +### Contributors + +Thanks to the people who made this release happen! + +* Aleksey Kuznetsov (@zummenix) +* Anton Älgmyr (@algmyr) +* Austin Seipp (@thoughtpolice) +* Benjamin Tan (@bnjmnt4n) +* Chris Krycho (@chriskrycho) +* Christoph Koehler (@ckoehler) +* Daniel Ploch (@torquestomp) +* Evan Mesterhazy (@emesterhazy) +* Ilya Grigoriev (@ilyagr) +* Khionu Sybiern (@khionu) +* Martin von Zweigbergk (@martinvonz) +* Matthew Davidson (@KingMob) +* mrstanwell (@mrstanwell) +* Noah Mayr (@noahmayr) +* Patric Stout (@TrueBrain) +* Poliorcetics (@poliorcetics) +* Simon Wollwage (@Kintaro) +* Steve Klabnik (@steveklabnik) +* Tom Ward (@tomafro) +* TrashCan (@TrashCan69420) +* Yuya Nishihara (@yuja) + + ## [0.15.1] - 2024-03-06 No code changes (fixing Rust `Cargo.toml` stuff). diff --git a/Cargo.lock b/Cargo.lock index bbada5f667..3da0d8ca45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -896,7 +896,7 @@ dependencies = [ [[package]] name = "gen-protos" -version = "0.15.1" +version = "0.16.0" dependencies = [ "prost-build", ] @@ -1664,7 +1664,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jj-cli" -version = "0.15.1" +version = "0.16.0" dependencies = [ "anyhow", "assert_cmd", @@ -1720,7 +1720,7 @@ dependencies = [ [[package]] name = "jj-lib" -version = "0.15.1" +version = "0.16.0" dependencies = [ "assert_matches", "async-trait", @@ -1776,7 +1776,7 @@ dependencies = [ [[package]] name = "jj-lib-proc-macros" -version = "0.15.1" +version = "0.16.0" dependencies = [ "proc-macro2", "quote", @@ -2887,7 +2887,7 @@ dependencies = [ [[package]] name = "testutils" -version = "0.15.1" +version = "0.16.0" dependencies = [ "async-trait", "config", diff --git a/Cargo.toml b/Cargo.toml index 1a29a4962f..51040d8212 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"] [workspace.package] -version = "0.15.1" +version = "0.16.0" license = "Apache-2.0" rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix edition = "2021" @@ -116,8 +116,8 @@ 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.15.1" } -jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.15.1" } +jj-lib = { path = "lib", version = "0.16.0" } +jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.16.0" } testutils = { path = "lib/testutils" } # Insta suggests compiling these packages in opt mode for faster testing.