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

release: release version 0.10.0

Thanks to everyone who's contributed!
This commit is contained in:
Martin von Zweigbergk 2023-10-04 11:59:33 -07:00 committed by Martin von Zweigbergk
parent a302090de9
commit ce933507df
4 changed files with 36 additions and 8 deletions

View file

@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Breaking changes
### New features
### Fixed bugs
## [0.10.0] - 2023-10-04
### Breaking changes
* A default revset-alias function `trunk()` now exists. If you previously defined
your own `trunk()` alias it will continue to overwrite the built-in one.
Check [revsets.toml](cli/src/config/revsets.toml) and [revsets.md](docs/revsets.md)
@ -48,6 +56,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed bugs
### Contributors
Thanks to the people who made this release happen!
* Austin Seipp (@thoughtpolice)
* Emily Kyle Fox (@emilykfox)
* glencbz (@glencbz)
* Hong Shin (@honglooker)
* Ilya Grigoriev (@ilyagr)
* James Sully (@sullyj3)
* Martin von Zweigbergk (@martinvonz)
* Philip Metzger (@PhilipMetzger)
* Ruben Slabbert (@rslabbert)
* Vamsi Avula (@avamsi)
* Waleed Khan (@arxanas)
* Willian Mori (@wmrmrx))
* Yuya Nishihara (@yuja)
* Zachary Dremann (@Dr-Emann)
## [0.9.0] - 2023-09-06
### Breaking changes

8
Cargo.lock generated
View file

@ -781,7 +781,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"prost-build",
]
@ -985,7 +985,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
[[package]]
name = "jj-cli"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"anyhow",
"assert_cmd",
@ -1033,7 +1033,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"assert_matches",
"backoff",
@ -2081,7 +2081,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"config",
"git2",

View file

@ -5,7 +5,7 @@ resolver = "2"
members = ["cli", "lib", "lib/testutils", "lib/gen-protos"]
[workspace.package]
version = "0.9.0"
version = "0.10.0"
license = "Apache-2.0"
rust-version = "1.71" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
edition = "2021"
@ -94,7 +94,7 @@ zstd = "0.12.4"
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
# their own (alphabetically sorted) block
jj-lib = { path = "lib", version = "0.9.0" }
jj-lib = { path = "lib", version = "0.10.0" }
testutils = { path = "lib/testutils" }
[profile.release]

View file

@ -68,8 +68,8 @@ fn test_no_subcommand() {
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["--version"]);
let sanitized = stdout.replace(|c: char| c.is_ascii_hexdigit(), "?");
assert!(
sanitized == "jj ?.?.?\n"
|| sanitized == "jj ?.?.?-????????????????????????????????????????\n",
sanitized == "jj ?.??.?\n"
|| sanitized == "jj ?.??.?-????????????????????????????????????????\n",
"{sanitized}"
);