ok/jj
1
0
Fork 0
forked from mirrors/jj

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:
Martin von Zweigbergk 2023-02-16 09:26:40 -08:00 committed by Martin von Zweigbergk
parent e7bd7a635a
commit eb79a21cc0
5 changed files with 33 additions and 11 deletions

View file

@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### 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 `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!
* Martin von Zweigbergk (@martinvonz)
* Danny Hooper (hooper@google.com)
* Yuya Nishihara (@yuja)
* Ilya Grigoriev (@ilyagr)
* Aleksandr Mikhailov (@AM5800)
* Augie Fackler (@durin42)
* Benjamin Saunders (@Ralith)
* Daniel Ploch (@torquestomp)
* Danny Hooper (@hooper)
* 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

6
Cargo.lock generated
View file

@ -794,7 +794,7 @@ dependencies = [
[[package]]
name = "jujutsu"
version = "0.6.1"
version = "0.7.0"
dependencies = [
"assert_cmd",
"chrono",
@ -835,7 +835,7 @@ dependencies = [
[[package]]
name = "jujutsu-lib"
version = "0.6.1"
version = "0.7.0"
dependencies = [
"assert_matches",
"backoff",
@ -1770,7 +1770,7 @@ dependencies = [
[[package]]
name = "testutils"
version = "0.6.1"
version = "0.7.0"
dependencies = [
"config",
"git2",

View file

@ -1,6 +1,6 @@
[package]
name = "jujutsu"
version = "0.6.1"
version = "0.7.0"
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
edition = "2021"
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"
hex = "0.4.3"
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"
once_cell = "1.17.1"
pest = "2.5.5"

View file

@ -1,6 +1,6 @@
[package]
name = "jujutsu-lib"
version = "0.6.1"
version = "0.7.0"
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
edition = "2021"
rust-version = "1.61"

View file

@ -1,6 +1,6 @@
[package]
name = "testutils"
version = "0.6.1"
version = "0.7.0"
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
edition = "2021"
rust-version = "1.61"