forked from mirrors/jj
release: release version 0.6.0
Lots of new features and important bugfixes. Thanks, everyone!
This commit is contained in:
parent
d9f1ada69a
commit
80ccfa8bcc
4 changed files with 17 additions and 5 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Breaking changes
|
||||
|
||||
### New features
|
||||
|
||||
### Fixed bugs
|
||||
|
||||
### Contributors
|
||||
|
||||
Thanks to the people who made this release happen!
|
||||
|
||||
## [0.6.0] - 2022-12-05
|
||||
|
||||
### Breaking changes
|
||||
|
||||
* Dropped candidates set argument from `description(needle)`, `author(needle)`,
|
||||
`committer(needle)`, `merges()` revsets. Use `x & description(needle)`
|
||||
instead.
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -765,7 +765,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jujutsu"
|
||||
version = "0.5.1"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"chrono",
|
||||
|
@ -805,7 +805,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jujutsu-lib"
|
||||
version = "0.5.1"
|
||||
version = "0.6.0"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"backoff",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jujutsu"
|
||||
version = "0.5.1"
|
||||
version = "0.6.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.60" # Remember to update CI
|
||||
|
@ -44,7 +44,7 @@ dirs = "4.0.0"
|
|||
git2 = "0.15.0"
|
||||
hex = "0.4.3"
|
||||
itertools = "0.10.5"
|
||||
jujutsu-lib = { version = "=0.5.1", path = "lib", default-features = false }
|
||||
jujutsu-lib = { version = "=0.6.0", path = "lib", default-features = false }
|
||||
once_cell = "1.15.0"
|
||||
maplit = "1.0.2"
|
||||
pest = "2.5.1"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jujutsu-lib"
|
||||
version = "0.5.1"
|
||||
version = "0.6.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.60"
|
||||
|
|
Loading…
Reference in a new issue