release: 0.39.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp
2026-03-04 08:36:57 -06:00
parent a52a7d6b2a
commit d9689cd9b5
3 changed files with 60 additions and 9 deletions

View File

@@ -10,6 +10,18 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Release highlights
### Breaking changes
### Deprecations
### New features
### Fixed bugs
## [0.39.0] - 2026-03-04
### Release highlights
* `jj arrange` command brings up a TUI where you can reorder and abandon
revisions. [#1531](https://github.com/jj-vcs/jj/issues/1531)
@@ -128,6 +140,44 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* `jj file track --include-ignored` now works when `fsmonitor.backend="watchman"`.
[#8427](https://github.com/jj-vcs/jj/issues/8427)
### Contributors
Thanks to the people who made this release happen!
* Aaron Christiansen (@AaronC81)
* Andy Brenneke (@abrenneke)
* Anton Älgmyr (@algmyr)
* Austin Seipp (@thoughtpolice)
* Benjamin Tan (@bnjmnt4n)
* Bram Geron (@bgeron)
* Bryce Berger (@bryceberger)
* Caleb White (@calebdw)
* countskm (@countdigi)
* David Higgs (@higgsd)
* Evan Simmons (@estk)
* Fedor Sheremetyev (@sheremetyev)
* Gaëtan Lehmann (@glehmann)
* George Christou (@gechr)
* Hubert Lefevre (@Paluche)
* Ian (@chronologos)
* Ilya Grigoriev (@ilyagr)
* Jaen (@jaens)
* Joseph Lou (@josephlou5)
* Josh Steadmon (@steadmon)
* Martin von Zweigbergk (@martinvonz)
* Matt Kulukundis (@fowles)
* Matt Stark (@matts1)
* max (@pr2502)
* Nika Layzell (@mystor)
* Philip Metzger (@PhilipMetzger)
* Richard Smith (@zygoloid)
* Scott Taylor (@scott2000)
* Steve Klabnik (@steveklabnik)
* Theodore Dubois (@tbodt)
* William Phetsinorath (@shikanime)
* xtqqczze (@xtqqczze)
* Yuya Nishihara (@yuja)
## [0.38.0] - 2026-02-04
### Release highlights
@@ -4828,7 +4878,8 @@ No changes, only trying to get the automated build to work.
Last release before this changelog started.
[unreleased]: https://github.com/jj-vcs/jj/compare/v0.38.0...HEAD
[unreleased]: https://github.com/jj-vcs/jj/compare/v0.39.0...HEAD
[0.39.0]: https://github.com/jj-vcs/jj/compare/v0.38.0...v0.39.0
[0.38.0]: https://github.com/jj-vcs/jj/compare/v0.37.0...v0.38.0
[0.37.0]: https://github.com/jj-vcs/jj/compare/v0.36.0...v0.37.0
[0.36.0]: https://github.com/jj-vcs/jj/compare/v0.35.0...v0.36.0

10
Cargo.lock generated
View File

@@ -1195,7 +1195,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"prost-build",
]
@@ -2413,7 +2413,7 @@ dependencies = [
[[package]]
name = "jj-cli"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"ansi-to-tui",
"assert_cmd",
@@ -2481,7 +2481,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"assert_matches",
"async-trait",
@@ -2540,7 +2540,7 @@ dependencies = [
[[package]]
name = "jj-lib-proc-macros"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"proc-macro2",
"quote",
@@ -4298,7 +4298,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.38.0"
version = "0.39.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.38.0"
version = "0.39.0"
license = "Apache-2.0"
rust-version = "1.89" # NOTE: remember to update CI, mise.toml, contributing.md, changelog.md, and install-and-setup.md
edition = "2024"
@@ -131,8 +131,8 @@ winreg = "0.55"
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
# their own (alphabetically sorted) block
jj-lib = { path = "lib", version = "0.38.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.38.0" }
jj-lib = { path = "lib", version = "0.39.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.39.0" }
testutils = { path = "lib/testutils" }
[workspace.lints.clippy]