mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-28 00:56:57 +00:00
release version 0.21.0
This commit is contained in:
parent
7d274a911e
commit
d002a5ad35
3 changed files with 40 additions and 8 deletions
32
CHANGELOG.md
32
CHANGELOG.md
|
@ -6,10 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres
|
and this project adheres
|
||||||
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
||||||
|
### Deprecations
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
### Fixed bugs
|
||||||
|
|
||||||
|
## [0.21.0] - 2024-09-04
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
|
||||||
* `next/prev` will no longer infer when to go into edit mode when moving from
|
* `next/prev` will no longer infer when to go into edit mode when moving from
|
||||||
commit to commit. It now either follows the flags `--edit|--no-edit` or it
|
commit to commit. It now either follows the flags `--edit|--no-edit` or it
|
||||||
gets the mode from `ui.movement.edit`.
|
gets the mode from `ui.movement.edit`.
|
||||||
|
@ -43,6 +54,27 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
broken due to using a sunset version of GitHub's macOS runners (but nobody had
|
broken due to using a sunset version of GitHub's macOS runners (but nobody had
|
||||||
previously complained.)
|
previously complained.)
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
|
||||||
|
Thanks to the people who made this release happen!
|
||||||
|
|
||||||
|
* Aaron Bull Schaefer (@elasticdog)
|
||||||
|
* Austin Seipp (@thoughtpolice)
|
||||||
|
* Benjamin Tan (@bnjmnt4n)
|
||||||
|
* Raniz Daniel Raneland (@Raniz85)
|
||||||
|
* Daniel Ploch (@torquestomp)
|
||||||
|
* Essien Ita Essien (@essiene)
|
||||||
|
* Ilya Grigoriev (@ilyagr)
|
||||||
|
* Kaleb Pace (@kalebpace)
|
||||||
|
* Marie (@NyCodeGHG)
|
||||||
|
* Marijan Smetko (@InCogNiTo124)
|
||||||
|
* Martin von Zweigbergk (@martinvonz)
|
||||||
|
* Matt Kulukundis (@fowles)
|
||||||
|
* Scott Taylor (@scott2000)
|
||||||
|
* Stephen Jennings (@jennings)
|
||||||
|
* tingerrr (@tingerrr)
|
||||||
|
* Yuya Nishihara (@yuja)
|
||||||
|
|
||||||
## [0.20.0] - 2024-08-07
|
## [0.20.0] - 2024-08-07
|
||||||
|
|
||||||
### Note to packagers
|
### Note to packagers
|
||||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -890,7 +890,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gen-protos"
|
name = "gen-protos"
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"prost-build",
|
"prost-build",
|
||||||
]
|
]
|
||||||
|
@ -1814,7 +1814,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-cli"
|
name = "jj-cli"
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
@ -1872,7 +1872,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-lib"
|
name = "jj-lib"
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_matches",
|
"assert_matches",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
@ -1932,7 +1932,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-lib-proc-macros"
|
name = "jj-lib-proc-macros"
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -3093,7 +3093,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "testutils"
|
name = "testutils"
|
||||||
version = "0.20.0"
|
version = "0.21.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"config",
|
"config",
|
||||||
|
|
|
@ -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.20.0"
|
version = "0.21.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"
|
||||||
|
@ -128,8 +128,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.20.0" }
|
jj-lib = { path = "lib", version = "0.21.0" }
|
||||||
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.20.0" }
|
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.21.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.
|
||||||
|
|
Loading…
Reference in a new issue