diff --git a/CHANGELOG.md b/CHANGELOG.md index f1bd4baf72..6b95c4326d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking changes +### New features + +### Fixed bugs + + +## [0.15.0] - 2024-03-06 + +### Breaking changes + * The minimum supported Rust version (MSRV) is now 1.76.0. * The on-disk index format changed. New index files will be created @@ -108,6 +117,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 one parent is an ancestor of another. [#2600](https://github.com/martinvonz/jj/issues/2600) +### Contributors + +Thanks to the people who made this release happen! + +* Aleksey Kuznetsov (@zummenix) +* Anton Bulakh (@necauqua) +* Anton Älgmyr (@algmyr) +* Austin Seipp (@thoughtpolice) +* Benjamin Brittain (@benbrittain) +* Benjamin Tan (@bnjmnt4n) +* Daehyeok Mun (@daehyeok) +* Daniel Ploch (@torquestomp) +* Evan Mesterhazy (@emesterhazy) +* gulbanana (@gulbanana) +* Ilya Grigoriev (@ilyagr) +* Jonathan Tan (@jonathantanmy) +* Julien Vincent (@julienvincent) +* jyn (@jyn514) +* Martin von Zweigbergk (@martinvonz) +* Paulo Coelho (@prscoelho) +* Philip Metzger (@PhilipMetzger) +* Poliorcetics (@poliorcetics) +* Stephen Jennings (@jennings) +* Vladimir (@0xdeafbeef) +* Yuya Nishihara (@yuja) + + ## [0.14.0] - 2024-02-07 ### Deprecations diff --git a/Cargo.lock b/Cargo.lock index dfb8196286..d43295168c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -884,7 +884,7 @@ dependencies = [ [[package]] name = "gen-protos" -version = "0.14.0" +version = "0.15.0" dependencies = [ "prost-build", ] @@ -1641,7 +1641,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jj-cli" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "assert_cmd", @@ -1696,7 +1696,7 @@ dependencies = [ [[package]] name = "jj-lib" -version = "0.14.0" +version = "0.15.0" dependencies = [ "assert_matches", "async-trait", @@ -1751,7 +1751,7 @@ dependencies = [ [[package]] name = "jj-lib-proc-macros" -version = "0.14.0" +version = "0.15.0" dependencies = [ "proc-macro2", "quote", @@ -2862,7 +2862,7 @@ dependencies = [ [[package]] name = "testutils" -version = "0.14.0" +version = "0.15.0" dependencies = [ "async-trait", "config", diff --git a/Cargo.toml b/Cargo.toml index 60cb36c619..df06d9ee68 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.14.0" +version = "0.15.0" license = "Apache-2.0" rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix edition = "2021" @@ -115,8 +115,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.14.0" } -jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.14.0" } +jj-lib = { path = "lib", version = "0.15.0" } +jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.15.0" } testutils = { path = "lib/testutils" } # Insta suggests compiling these packages in opt mode for faster testing.