release: release version 0.24.0
Some checks failed
binaries / Build binary artifacts (push) Has been cancelled
nix / flake check (push) Has been cancelled
build / build (, macos-13) (push) Has been cancelled
build / build (, macos-14) (push) Has been cancelled
build / build (, ubuntu-latest) (push) Has been cancelled
build / build (, windows-latest) (push) Has been cancelled
build / build (--all-features, ubuntu-latest) (push) Has been cancelled
build / Build jj-lib without Git support (push) Has been cancelled
build / Check protos (push) Has been cancelled
build / Check formatting (push) Has been cancelled
build / Check that MkDocs can build the docs (push) Has been cancelled
build / Check that MkDocs can build the docs with latest Python and uv (push) Has been cancelled
build / cargo-deny (advisories) (push) Has been cancelled
build / cargo-deny (bans licenses sources) (push) Has been cancelled
build / Clippy check (push) Has been cancelled
Codespell / Codespell (push) Has been cancelled
website / prerelease-docs-build-deploy (ubuntu-latest) (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled

This commit is contained in:
Martin von Zweigbergk 2024-12-04 12:06:38 -08:00 committed by Martin von Zweigbergk
parent 5553baf540
commit 32d2a85539
3 changed files with 43 additions and 8 deletions

View file

@ -10,6 +10,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Breaking changes
### Deprecations
### New features
### Fixed bugs
## [0.24.0] - 2024-12-04
### Breaking changes
* `jj move` has been removed. It was deprecated in 0.16.0.
* `jj checkout` and the built-in alias `jj co` have been removed.
@ -88,6 +98,31 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* `jj config unset <TABLE-NAME>` no longer removes a table (such as `[ui]`.)
### Contributors
Thanks to the people who made this release happen!
* Austin Seipp (@thoughtpolice)
* Benjamin Tan (@bnjmnt4n)
* Daniel Ploch (@torquestomp)
* Emily (@neongreen)
* Essien Ita Essien (@essiene)
* Herman J. Radtke III (@hjr3)
* Ilya Grigoriev (@ilyagr)
* Joaquín Triñanes (@JoaquinTrinanes)
* Lars Francke (@lfrancke)
* Luke Randall (@lukerandall)
* Martin von Zweigbergk (@martinvonz)
* Nathanael Huffman (@nathanaelhuffman)
* Philip Metzger (@PhilipMetzger)
* Remo Senekowitsch (@senekor)
* Robin Stocker (@robinst)
* Scott Taylor (@scott2000)
* Shane Sveller (@shanesveller)
* Tim Janik (@tim-janik)
* Yuya Nishihara (@yuja)
## [0.23.0] - 2024-11-06
### Security fixes

10
Cargo.lock generated
View file

@ -872,7 +872,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.23.0"
version = "0.24.0"
dependencies = [
"prost-build",
]
@ -1805,7 +1805,7 @@ dependencies = [
[[package]]
name = "jj-cli"
version = "0.23.0"
version = "0.24.0"
dependencies = [
"anyhow",
"assert_cmd",
@ -1864,7 +1864,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.23.0"
version = "0.24.0"
dependencies = [
"assert_matches",
"async-trait",
@ -1925,7 +1925,7 @@ dependencies = [
[[package]]
name = "jj-lib-proc-macros"
version = "0.23.0"
version = "0.24.0"
dependencies = [
"proc-macro2",
"quote",
@ -3100,7 +3100,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.23.0"
version = "0.24.0"
dependencies = [
"async-trait",
"config",

View file

@ -5,7 +5,7 @@ resolver = "2"
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]
[workspace.package]
version = "0.23.0"
version = "0.24.0"
license = "Apache-2.0"
rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, install-and-setup.md, and flake.nix
edition = "2021"
@ -129,8 +129,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.23.0" }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.23.0" }
jj-lib = { path = "lib", version = "0.24.0" }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.24.0" }
testutils = { path = "lib/testutils" }
[workspace.lints.clippy]