mirror of
https://github.com/jj-vcs/jj.git
synced 2025-12-23 06:01:01 +00:00
release: 0.28.2
This commit is contained in:
parent
75d3a8c953
commit
b9ebe2f03c
3 changed files with 12 additions and 8 deletions
|
|
@ -16,6 +16,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|||
|
||||
### Fixed bugs
|
||||
|
||||
## [0.28.2] - 2025-04-07
|
||||
|
||||
### Fixed bugs
|
||||
|
||||
* Fixed problem that old commits could be re-imported from Git.
|
||||
https://github.com/GitoxideLabs/gitoxide/issues/1928
|
||||
|
||||
|
|
|
|||
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -1020,7 +1020,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gen-protos"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"prost-build",
|
||||
]
|
||||
|
|
@ -2290,7 +2290,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jj-cli"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"assert_matches",
|
||||
|
|
@ -2349,7 +2349,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jj-lib"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"async-trait",
|
||||
|
|
@ -2408,7 +2408,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jj-lib-proc-macros"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
@ -3939,7 +3939,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "testutils"
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"bstr",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ resolver = "3"
|
|||
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.28.1"
|
||||
version = "0.28.2"
|
||||
license = "Apache-2.0"
|
||||
rust-version = "1.84" # NOTE: remember to update CI, contributing.md, changelog.md, and install-and-setup.md
|
||||
edition = "2021"
|
||||
|
|
@ -127,8 +127,8 @@ winreg = "0.52"
|
|||
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
|
||||
# their own (alphabetically sorted) block
|
||||
|
||||
jj-lib = { path = "lib", version = "0.28.1", default-features = false }
|
||||
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.28.1" }
|
||||
jj-lib = { path = "lib", version = "0.28.2", default-features = false }
|
||||
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.28.2" }
|
||||
testutils = { path = "lib/testutils" }
|
||||
|
||||
[workspace.lints.clippy]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue