forked from mirrors/jj
release: release version 0.13.0
Thanks to everyone who's contributed!
This commit is contained in:
parent
614b289ff5
commit
5450e6c9ba
3 changed files with 29 additions and 6 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -9,12 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Breaking changes
|
||||
|
||||
### New features
|
||||
|
||||
### Fixed bugs
|
||||
|
||||
|
||||
## [0.13.0] - 2024-01-03
|
||||
|
||||
### Breaking changes
|
||||
|
||||
* `jj git fetch` no longer imports new remote branches as local branches. Set
|
||||
`git.auto-local-branch = true` to restore the old behavior.
|
||||
|
||||
### New features
|
||||
|
||||
* Information about new and resolved conflicts is now printed by every command.
|
||||
|
||||
* `jj branch` has gained a new `rename` subcommand that allows changing a branch
|
||||
name atomically. `jj branch help rename` for details.
|
||||
|
||||
|
@ -24,6 +34,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
current working directory.
|
||||
[#2414](https://github.com/martinvonz/jj/issues/2414)
|
||||
|
||||
### Contributors
|
||||
|
||||
Thanks to the people who made this release happen!
|
||||
|
||||
* Austin Seipp (@thoughtpolice)
|
||||
* Essien Ita Essien (@essiene)
|
||||
* Gabriel Scherer (@gasche)
|
||||
* Ilya Grigoriev (@ilyagr)
|
||||
* Martin von Zweigbergk (@martinvonz)
|
||||
* Philip Metzger (@PhilipMetzger)
|
||||
* Waleed Khan (@arxanas)
|
||||
* Yuya Nishihara (@yuja)
|
||||
|
||||
|
||||
## [0.12.0] - 2023-12-05
|
||||
|
||||
|
|
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -870,7 +870,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gen-protos"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"prost-build",
|
||||
]
|
||||
|
@ -1580,7 +1580,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
|||
|
||||
[[package]]
|
||||
name = "jj-cli"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
@ -1631,7 +1631,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jj-lib"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"async-trait",
|
||||
|
@ -2822,7 +2822,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "testutils"
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"config",
|
||||
|
|
|
@ -5,7 +5,7 @@ resolver = "2"
|
|||
members = ["cli", "lib", "lib/testutils", "lib/gen-protos"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.12.0"
|
||||
version = "0.13.0"
|
||||
license = "Apache-2.0"
|
||||
rust-version = "1.71" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
|
||||
edition = "2021"
|
||||
|
@ -102,7 +102,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.12.0" }
|
||||
jj-lib = { path = "lib", version = "0.13.0" }
|
||||
testutils = { path = "lib/testutils" }
|
||||
|
||||
[profile.release]
|
||||
|
|
Loading…
Reference in a new issue