ok/jj
1
0
Fork 0
forked from mirrors/jj

release: version 0.19.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2024-07-03 11:17:40 -05:00
parent 30bb90e417
commit 74c275ed10
3 changed files with 41 additions and 8 deletions

View file

@ -10,6 +10,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Breaking changes ### Breaking changes
### Deprecations
### New features
### Fixed bugs
## [0.19.0] - 2024-07-03
### Breaking changes
* In revset aliases, top-level `kind:pattern` expression is now parsed as * In revset aliases, top-level `kind:pattern` expression is now parsed as
modifier. Surround with parentheses if it should be parsed as string/file modifier. Surround with parentheses if it should be parsed as string/file
pattern. pattern.
@ -98,6 +108,29 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
finds the change id inside the short prefix set. finds the change id inside the short prefix set.
[#2476](https://github.com/martinvonz/jj/issues/2476) [#2476](https://github.com/martinvonz/jj/issues/2476)
### Contributors
Thanks to the people who made this release happen!
* Austin Seipp (@thoughtpolice)
* Benjamin Tan (@bnjmnt4n)
* Daniel Ploch (@torquestomp)
* Danny Hooper (@hooper)
* Ilya Grigoriev (@ilyagr)
* James Sully (@sullyj3)
* Jonathan Tan (@jonathantanmy)
* Kyle J Strand (@BatmanAoD)
* Manuel Caldeira (@KiitoX)
* Martin von Zweigbergk (@martinvonz)
* Matt Kulukundis (@fowles)
* Matt Stark (@matts1)
* mlcui (@mlcui-corp)
* Philip Metzger (@PhilipMetzger)
* Scott Taylor (@scott2000)
* Simon Wollwage (@Kintaro)
* Tal Pressman (@tp-woven)
* Yuya Nishihara (@yuja)
## [0.18.0] - 2024-06-05 ## [0.18.0] - 2024-06-05
### Breaking changes ### Breaking changes

10
Cargo.lock generated
View file

@ -910,7 +910,7 @@ dependencies = [
[[package]] [[package]]
name = "gen-protos" name = "gen-protos"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"prost-build", "prost-build",
] ]
@ -1663,7 +1663,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]] [[package]]
name = "jj-cli" name = "jj-cli"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",
@ -1720,7 +1720,7 @@ dependencies = [
[[package]] [[package]]
name = "jj-lib" name = "jj-lib"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"async-trait", "async-trait",
@ -1776,7 +1776,7 @@ dependencies = [
[[package]] [[package]]
name = "jj-lib-proc-macros" name = "jj-lib-proc-macros"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2932,7 +2932,7 @@ dependencies = [
[[package]] [[package]]
name = "testutils" name = "testutils"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"config", "config",

View file

@ -5,7 +5,7 @@ resolver = "2"
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"] members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]
[workspace.package] [workspace.package]
version = "0.18.0" version = "0.19.0"
license = "Apache-2.0" license = "Apache-2.0"
rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
edition = "2021" edition = "2021"
@ -116,8 +116,8 @@ zstd = "0.12.4"
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in # put all inter-workspace libraries, i.e. those that use 'path = ...' here in
# their own (alphabetically sorted) block # their own (alphabetically sorted) block
jj-lib = { path = "lib", version = "0.18.0" } jj-lib = { path = "lib", version = "0.19.0" }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.18.0" } jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.19.0" }
testutils = { path = "lib/testutils" } testutils = { path = "lib/testutils" }
# Insta suggests compiling these packages in opt mode for faster testing. # Insta suggests compiling these packages in opt mode for faster testing.