mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-24 12:48:55 +00:00
release: release version 0.4.0
This release is mostly about the fix for #177, which looks pretty bad even though I think it is actually harmless. It also has `jj log -p` contributed by @yuja!
This commit is contained in:
parent
28916ceb19
commit
6efa47814a
4 changed files with 7 additions and 5 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.4.0] - 2022-04-02
|
||||
|
||||
### Breaking changes
|
||||
|
||||
* Dropped support for config in `~/.jjconfig`. Your configuration is now read
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -713,7 +713,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jujutsu"
|
||||
version = "0.3.3"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"atty",
|
||||
|
@ -745,7 +745,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jujutsu-lib"
|
||||
version = "0.3.3"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"backoff",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jujutsu"
|
||||
version = "0.3.3"
|
||||
version = "0.4.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
@ -42,7 +42,7 @@ hex = "0.4.3"
|
|||
indoc = "1.0.4"
|
||||
insta = "1.14.0"
|
||||
itertools = "0.10.3"
|
||||
jujutsu-lib = { version = "=0.3.3", path = "lib"}
|
||||
jujutsu-lib = { version = "=0.4.0", path = "lib"}
|
||||
maplit = "1.0.2"
|
||||
pest = "2.1.3"
|
||||
pest_derive = "2.1.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jujutsu-lib"
|
||||
version = "0.3.3"
|
||||
version = "0.4.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
|
Loading…
Reference in a new issue