release: 0.38.0

This commit is contained in:
Martin von Zweigbergk
2026-02-04 09:25:41 -08:00
committed by Ilya Grigoriev
parent 90e6dbaa1f
commit 2508982cde
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.38.0] - 2026-02-04
### Release highlights
* Per-repo and per-workspace config is now stored outside the repo, for security
reasons. This is not a breaking change because we automatically migrate
legacy repos to this new format. `.jj/repo/config.toml` and
@@ -132,6 +144,44 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* `--quiet` now hides progress bars.
### Contributors
Thanks to the people who made this release happen!
* Benjamin Davies (@Benjamin-Davies)
* Bryce Berger (@bryceberger)
* Chris Rose (@offbyone)
* Daniel Morsing (@DanielMorsing)
* David Fröhlingsdorf (@2079884FDavid)
* David Higgs (@higgsd)
* David Rieber (@drieber)
* Federico G. Schwindt (@fgsch)
* Gaëtan Lehmann (@glehmann)
* George Christou (@gechr)
* itstrivial
* Jeff Turner (@jefft)
* Jonas Greitemann (@jgreitemann)
* Jonas Helgemo (@jonashelgemo)
* Joseph Lou (@josephlou5)
* Kaiyi Li (@06393993)
* Lukas Wirth (@Veykril)
* Martin von Zweigbergk (@martinvonz)
* Matt Stark (@matts1)
* Paul Smith (@paulsmith)
* Pavan Kumar Sunkara (@pksunkara)
* Philip Metzger (@PhilipMetzger)
* Remo Senekowitsch (@senekor)
* Sami Jawhar (@sjawhar)
* Scott Taylor (@scott2000)
* Simone Cattaneo (@simonecattaneo91)
* Steve Klabnik (@steveklabnik)
* tom (@lecafard)
* Vincent Ging Ho Yim (@cenviity)
* \_WD\_ (@0WD0)
* xtqqczze (@xtqqczze)
* Yuya Nishihara (@yuja)
* yz (@yzheng453)
## [0.37.0] - 2026-01-07
### Release highlights
@@ -4667,7 +4717,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.37.0...HEAD
[unreleased]: https://github.com/jj-vcs/jj/compare/v0.38.0...HEAD
[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
[0.35.0]: https://github.com/jj-vcs/jj/compare/v0.34.0...v0.35.0

10
Cargo.lock generated
View File

@@ -1159,7 +1159,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"prost-build",
]
@@ -2353,7 +2353,7 @@ dependencies = [
[[package]]
name = "jj-cli"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"assert_cmd",
"assert_matches",
@@ -2418,7 +2418,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"assert_matches",
"async-trait",
@@ -2477,7 +2477,7 @@ dependencies = [
[[package]]
name = "jj-lib-proc-macros"
version = "0.37.0"
version = "0.38.0"
dependencies = [
"proc-macro2",
"quote",
@@ -4160,7 +4160,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.37.0"
version = "0.38.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.37.0"
version = "0.38.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"
@@ -129,8 +129,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.37.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.37.0" }
jj-lib = { path = "lib", version = "0.38.0", default-features = false }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.38.0" }
testutils = { path = "lib/testutils" }
[workspace.lints.clippy]