From eb79a21cc0f438e1e2b6d2aa643b2d7c9590ca15 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Thu, 16 Feb 2023 09:26:40 -0800 Subject: [PATCH] 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! --- CHANGELOG.md | 28 +++++++++++++++++++++++++--- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- lib/testutils/Cargo.toml | 2 +- 5 files changed, 32 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 323a3678be..c5ff5bdeb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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! + * 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) - * Danny Hooper (hooper@google.com) + * Michael Forster (@MForster) + * Philip Metzger (@PhilipMetzger) + * Ruben Slabbert (@rslabbert) + * Samuel Tardieu (@samueltardieu) + * Tal Pressman (@talpr) + * Vamsi Avula (@avamsi) + * Waleed Khan (@arxanas) * Yuya Nishihara (@yuja) - * Ilya Grigoriev (@ilyagr) - * David Barnett (@dbarnett) ## [0.6.1] - 2022-12-05 diff --git a/Cargo.lock b/Cargo.lock index 9e9e1161d7..5b228c5ce9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index b74c62b515..71cc49f675 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jujutsu" -version = "0.6.1" +version = "0.7.0" authors = ["Martin von Zweigbergk "] 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" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 9754f69e81..50ca5f7489 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jujutsu-lib" -version = "0.6.1" +version = "0.7.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.61" diff --git a/lib/testutils/Cargo.toml b/lib/testutils/Cargo.toml index 4687c80adc..c6cb6b610f 100644 --- a/lib/testutils/Cargo.toml +++ b/lib/testutils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testutils" -version = "0.6.1" +version = "0.7.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.61"