release: 0.32.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2025-08-06 08:39:16 -05:00
parent 348e51f008
commit 44de571887
3 changed files with 55 additions and 12 deletions

View file

@ -8,7 +8,15 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Release highlights
### Breaking changes
### Deprecations
### New features
### Fixed bugs
## [0.32.0] - 2025-08-06
### Breaking changes
@ -41,9 +49,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### New features
* `jj workspace list` now accepts `-T`/`--template` option to customize its output via templates.
* `jj workspace list` now accepts `-T`/`--template` option to customize its
output via templates.
* Added `templates.workspace_list` template to customize the output of `jj workspace list`.
* Added `templates.workspace_list` template to customize the output of
`jj workspace list`.
* `jj fix` now buffers the standard error stream from subprocesses and emits
the output from each all at once. The file name is printed before the output.
@ -99,8 +109,41 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* `jj git fetch` no longer shows `NaN%` progress when connecting to slow remotes.
[#7155](https://github.com/jj-vcs/jj/issues/7155)
### Packaging changes
### Contributors
Thanks to the people who made this release happen!
* adamnemecek (@adamnemecek)
* Alexander Kobjolke (@jakalx)
* Apromixately (@Apromixately)
* Austin Seipp (@thoughtpolice)
* Bryce Berger (@bryceberger)
* Daniel Danner (@dnnr)
* Daniel Luz (@mernen)
* Evan Martin (@evmar)
* George Christou (@gechr)
* George Elliott-Hunter (@george-palmsens)
* Hubert Głuchowski (@afishhh)
* Ilya Grigoriev (@ilyagr)
* Jade Lovelace (@lf-)
* Jake Martin (@jake-m-commits)
* Jan Klass (@Kissaki)
* Joaquín Triñanes (@JoaquinTrinanes)
* Josh Steadmon (@steadmon)
* Kaiyi Li (@06393993)
* Martin von Zweigbergk (@martinvonz)
* Nigthknight (@nigthknight)
* Ori Avtalion (@salty-horse)
* Pablo Brasero (@pablobm)
* Pavan Kumar Sunkara (@pksunkara)
* Philip Metzger (@PhilipMetzger)
* phoebe (@phoreverpheebs)
* Remo Senekowitsch (@senekor)
* Scott Taylor (@scott2000)
* Stephen Jennings (@jennings)
* Theo Buehler (@botovq)
* Tyarel8 (@Tyarel8)
* Yuya Nishihara (@yuja)
## [0.31.0] - 2025-07-02

10
Cargo.lock generated
View file

@ -1089,7 +1089,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"prost-build",
]
@ -2333,7 +2333,7 @@ dependencies = [
[[package]]
name = "jj-cli"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"assert_cmd",
"assert_matches",
@ -2396,7 +2396,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"assert_matches",
"async-trait",
@ -2455,7 +2455,7 @@ dependencies = [
[[package]]
name = "jj-lib-proc-macros"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"proc-macro2",
"quote",
@ -3975,7 +3975,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.31.0"
version = "0.32.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.31.0"
version = "0.32.0"
license = "Apache-2.0"
rust-version = "1.85" # NOTE: remember to update CI, contributing.md, changelog.md, and install-and-setup.md
edition = "2024"
@ -127,8 +127,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.31.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.31.0" }
jj-lib = { path = "lib", version = "0.32.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.32.0" }
testutils = { path = "lib/testutils" }
[workspace.lints.clippy]