release: 0.29.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2025-05-07 01:46:16 -05:00
parent 5017c44deb
commit 94269d2e72
3 changed files with 54 additions and 9 deletions

View file

@ -10,6 +10,20 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Release highlights
### Breaking changes
### Deprecations
### New features
### Fixed bugs
### Packaging changes
## [0.29.0] - 2025-05-07
### Release highlights
* Experimental support for transferring the change ID to/from Git remotes behind configuration
setting `git.write-change-id-header`. If this is enabled, the change ID will be stored in the Git
commit itself (in a commit header called `change-id`), which means it will be transferred by
@ -78,7 +92,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
`jj log -r first-bookmark..sec` and then pressing Tab could complete the
expression to `first-bookmark..second-bookmark`.
### Fixed bugs
* Fixed crash on change-delete conflict resolution.
@ -97,6 +110,38 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
fast compression library written in Rust. Packagers should remove any
dependency on CMake and drop the `packaging` Cargo feature.
### Contributors
Thanks to the people who made this release happen!
* Aleksey Kuznetsov (@zummenix)
* Austin Seipp (@thoughtpolice)
* Benjamin Brittain (@benbrittain)
* Benjamin Tan (@bnjmnt4n)
* Caleb White (@calebdw)
* Daniel Luz (@mernen)
* Emily (@emilazy)
* Emily (@neongreen)
* Gaëtan Lehmann (@glehmann)
* George Christou (@gechr)
* Ilya Grigoriev (@ilyagr)
* Jacob Hayes (@JacobHayes)
* Jonas Greitemann (@jgreitemann)
* Josh Steadmon (@steadmon)
* Martin von Zweigbergk (@martinvonz)
* Mateus Auler (@mateusauler)
* Nicole Patricia Mazzuca (@strega-nil)
* Nils Koch (@nilskch)
* Philip Metzger (@PhilipMetzger)
* Remo Senekowitsch (@senekor)
* Sam (@Samasaur1)
* Steve Fink (@hotsphink)
* Théo Daron (@tdaron)
* TimerErTim (@TimerErTim)
* Vincent Ging Ho Yim (@cenviity)
* Winter (@winterqt)
* Yuya Nishihara (@yuja)
## [0.28.2] - 2025-04-07
### Fixed bugs

10
Cargo.lock generated
View file

@ -1079,7 +1079,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.28.2"
version = "0.29.0"
dependencies = [
"prost-build",
]
@ -2348,7 +2348,7 @@ dependencies = [
[[package]]
name = "jj-cli"
version = "0.28.2"
version = "0.29.0"
dependencies = [
"assert_cmd",
"assert_matches",
@ -2408,7 +2408,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.28.2"
version = "0.29.0"
dependencies = [
"assert_matches",
"async-trait",
@ -2467,7 +2467,7 @@ dependencies = [
[[package]]
name = "jj-lib-proc-macros"
version = "0.28.2"
version = "0.29.0"
dependencies = [
"proc-macro2",
"quote",
@ -3977,7 +3977,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.28.2"
version = "0.29.0"
dependencies = [
"async-trait",
"bstr",

View file

@ -5,7 +5,7 @@ resolver = "3"
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]
[workspace.package]
version = "0.28.2"
version = "0.29.0"
license = "Apache-2.0"
rust-version = "1.84" # NOTE: remember to update CI, contributing.md, changelog.md, and install-and-setup.md
edition = "2021"
@ -131,8 +131,8 @@ winreg = "0.52"
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
# their own (alphabetically sorted) block
jj-lib = { path = "lib", version = "0.28.2", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.28.2" }
jj-lib = { path = "lib", version = "0.29.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.29.0" }
testutils = { path = "lib/testutils" }
[workspace.lints.clippy]