release: release version 0.14.0

Thanks to everyone who's contributed!
This commit is contained in:
Martin von Zweigbergk 2024-02-07 13:06:18 -08:00 committed by Martin von Zweigbergk
parent 1296d20126
commit 8e4d1af98e
3 changed files with 39 additions and 6 deletions

View file

@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecations
### Breaking changes
### New features
### Fixed bugs
## [0.14.0] - 2024-02-07
### Deprecations
* `jj checkout` and `jj merge` are both deprecated; use `jj new` instead to
replace both of these commands in all instances.
@ -102,6 +112,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
abandoned by Git.
[#2876](https://github.com/martinvonz/jj/issues/2876)
### Contributors
Thanks to the people who made this release happen!
* Austin Seipp (@thoughtpolice)
* Benjamin Brittain (@benbrittain)
* Chris Krycho (@chriskrycho)
* Daehyeok Mun (@daehyeok)
* Daniel Ploch (@torquestomp)
* Essien Ita Essien (@essiene)
* Ikko Eltociear Ashimine (@eltociear)
* Ilya Grigoriev (@ilyagr)
* Jonathan Tan (@jonathantanmy)
* jyn (@jyn514)
* Martin von Zweigbergk (@martinvonz)
* Matt Stark (@matts1)
* Michael Pratt (prattmic)
* Philip Metzger (@PhilipMetzger)
* Stephen Jennings (@jennings)
* Valentin Gatien-Baron (@v-gb)
* vwkd (@vwkd)
* Yuya Nishihara (@yuja)
## [0.13.0] - 2024-01-03

8
Cargo.lock generated
View file

@ -868,7 +868,7 @@ dependencies = [
[[package]]
name = "gen-protos"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"prost-build",
]
@ -1578,7 +1578,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
[[package]]
name = "jj-cli"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"anyhow",
"assert_cmd",
@ -1630,7 +1630,7 @@ dependencies = [
[[package]]
name = "jj-lib"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"assert_matches",
"async-trait",
@ -2771,7 +2771,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"async-trait",
"config",

View file

@ -5,7 +5,7 @@ resolver = "2"
members = ["cli", "lib", "lib/testutils", "lib/gen-protos"]
[workspace.package]
version = "0.13.0"
version = "0.14.0"
license = "Apache-2.0"
rust-version = "1.71" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
edition = "2021"
@ -108,7 +108,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.13.0" }
jj-lib = { path = "lib", version = "0.14.0" }
testutils = { path = "lib/testutils" }
[profile.release]