mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 02:04:19 +00:00
release: release version 0.7.0
It's been about 10 weeks and 730 commits since 0.6.0, compared to about 7 weeks and 350 commits between 0.5.0 and 0.6.0, so it's time for a new release. There's been significant user-visible changes and code-quality improvements. Thanks, everyone!
This commit is contained in:
parent
e7bd7a635a
commit
eb79a21cc0
5 changed files with 33 additions and 11 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
### Fixed bugs
|
||||||
|
|
||||||
|
## [0.7.0] - 2023-02-16
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
|
||||||
* The minimum supported Rust version (MSRV) is now 1.61.0.
|
* The minimum supported Rust version (MSRV) is now 1.61.0.
|
||||||
|
|
||||||
* The `jj touchup` command was renamed to `jj diffedit`.
|
* The `jj touchup` command was renamed to `jj diffedit`.
|
||||||
|
@ -197,11 +205,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
Thanks to the people who made this release happen!
|
Thanks to the people who made this release happen!
|
||||||
|
|
||||||
* Martin von Zweigbergk (@martinvonz)
|
* Aleksandr Mikhailov (@AM5800)
|
||||||
* Danny Hooper (hooper@google.com)
|
* Augie Fackler (@durin42)
|
||||||
* Yuya Nishihara (@yuja)
|
* Benjamin Saunders (@Ralith)
|
||||||
* Ilya Grigoriev (@ilyagr)
|
* Daniel Ploch (@torquestomp)
|
||||||
|
* Danny Hooper (@hooper)
|
||||||
* David Barnett (@dbarnett)
|
* David Barnett (@dbarnett)
|
||||||
|
* Glen Choo (@chooglen)
|
||||||
|
* Herby Gillot (@herbygillot)
|
||||||
|
* Ilya Grigoriev (@ilyagr)
|
||||||
|
* Luke Granger-Brown (@lukegb)
|
||||||
|
* Martin von Zweigbergk (@martinvonz)
|
||||||
|
* Michael Forster (@MForster)
|
||||||
|
* Philip Metzger (@PhilipMetzger)
|
||||||
|
* Ruben Slabbert (@rslabbert)
|
||||||
|
* Samuel Tardieu (@samueltardieu)
|
||||||
|
* Tal Pressman (@talpr)
|
||||||
|
* Vamsi Avula (@avamsi)
|
||||||
|
* Waleed Khan (@arxanas)
|
||||||
|
* Yuya Nishihara (@yuja)
|
||||||
|
|
||||||
## [0.6.1] - 2022-12-05
|
## [0.6.1] - 2022-12-05
|
||||||
|
|
||||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -794,7 +794,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jujutsu"
|
name = "jujutsu"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -835,7 +835,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jujutsu-lib"
|
name = "jujutsu-lib"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_matches",
|
"assert_matches",
|
||||||
"backoff",
|
"backoff",
|
||||||
|
@ -1770,7 +1770,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "testutils"
|
name = "testutils"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"config",
|
"config",
|
||||||
"git2",
|
"git2",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jujutsu"
|
name = "jujutsu"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.61" # Remember to update CI, contributing.md, and flake.nix
|
rust-version = "1.61" # Remember to update CI, contributing.md, and flake.nix
|
||||||
|
@ -46,7 +46,7 @@ esl01-renderdag = "0.3.0"
|
||||||
glob = "0.3.1"
|
glob = "0.3.1"
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
jujutsu-lib = { version = "=0.6.1", path = "lib", default-features = false }
|
jujutsu-lib = { version = "=0.7.0", path = "lib", default-features = false }
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
once_cell = "1.17.1"
|
once_cell = "1.17.1"
|
||||||
pest = "2.5.5"
|
pest = "2.5.5"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jujutsu-lib"
|
name = "jujutsu-lib"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.61"
|
rust-version = "1.61"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "testutils"
|
name = "testutils"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.61"
|
rust-version = "1.61"
|
||||||
|
|
Loading…
Reference in a new issue