mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-19 19:08:08 +00:00
release: release version 0.15.1
This release is just so we can publish the crates to crates.io. We couldn't publish the 0.15.0 crates because `jj-lib-proc-macros` had `publish = false`.
This commit is contained in:
parent
5ce5022ee9
commit
bf76080f42
3 changed files with 11 additions and 8 deletions
|
@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Fixed bugs
|
### Fixed bugs
|
||||||
|
|
||||||
|
## [0.15.1] - 2024-03-06
|
||||||
|
|
||||||
|
No code changes (fixing Rust `Cargo.toml` stuff).
|
||||||
|
|
||||||
## [0.15.0] - 2024-03-06
|
## [0.15.0] - 2024-03-06
|
||||||
|
|
||||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -884,7 +884,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gen-protos"
|
name = "gen-protos"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"prost-build",
|
"prost-build",
|
||||||
]
|
]
|
||||||
|
@ -1641,7 +1641,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-cli"
|
name = "jj-cli"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
@ -1696,7 +1696,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-lib"
|
name = "jj-lib"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_matches",
|
"assert_matches",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
@ -1751,7 +1751,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-lib-proc-macros"
|
name = "jj-lib-proc-macros"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -2862,7 +2862,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "testutils"
|
name = "testutils"
|
||||||
version = "0.15.0"
|
version = "0.15.1"
|
||||||
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.15.0"
|
version = "0.15.1"
|
||||||
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"
|
||||||
|
@ -115,8 +115,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.15.0" }
|
jj-lib = { path = "lib", version = "0.15.1" }
|
||||||
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.15.0" }
|
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.15.1" }
|
||||||
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