From 8149ec6df6490ac596f92fdf584d2d666e8c0b6b Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sat, 8 Jul 2023 21:41:55 -0700 Subject: [PATCH] release: release version 0.8.0 Thanks to everyone who's contributed! --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- README.md | 2 +- lib/Cargo.toml | 2 +- lib/testutils/Cargo.toml | 2 +- 6 files changed, 40 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5390a748c..d29225007 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.8.0] - 2023-07-09 + +### Breaking changes + * The `jujutsu` and `jujutsu-lib` crates were renamed to `jj-cli` and `jj-lib`, respectively. @@ -181,6 +189,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 has been fixed. Some surprising behaviors related to undoing `jj git push` or `jj git fetch` remain. +### Contributors + +Thanks to the people who made this release happen! + +* Aaron Bull Schaefer (@elasticdog) +* Anton Bulakh (@necauqua) +* Austin Seipp (@thoughtpolice) +* Benjamin Saunders (@Ralith) +* B Wilson (@xelxebar) +* Christophe Poucet (@poucet) +* David Barnett (@dbarnett) +* Glen Choo (@chooglen) +* Grégoire Geis (@71) +* Ilya Grigoriev (@ilyagr) +* Isabella Basso (@isinyaaa) +* Kevin Liao (@kevincliao) +* Martin von Zweigbergk (@martinvonz) +* Samuel Tardieu (@samueltardieu) +* Tal Pressman (@talpr) +* Vamsi Avula (@avamsi) +* Waleed Khan (@arxanas) +* Yuya Nishihara (@yuja) + + ## [0.7.0] - 2023-02-16 ### Breaking changes diff --git a/Cargo.lock b/Cargo.lock index 312e47c14..a341962e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -998,7 +998,7 @@ checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" [[package]] name = "jj-cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "assert_cmd", "assert_matches", @@ -1041,7 +1041,7 @@ dependencies = [ [[package]] name = "jj-lib" -version = "0.7.0" +version = "0.8.0" dependencies = [ "assert_matches", "backoff", @@ -2080,7 +2080,7 @@ dependencies = [ [[package]] name = "testutils" -version = "0.7.0" +version = "0.8.0" dependencies = [ "config", "git2", diff --git a/Cargo.toml b/Cargo.toml index 955d94d6a..5cffc84a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jj-cli" -version = "0.7.0" +version = "0.8.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.64" # Remember to update CI, contributing.md, and flake.nix @@ -47,7 +47,7 @@ glob = "0.3.1" hex = "0.4.3" indexmap = "2.0.0" itertools = "0.11.0" -jj-lib = { version = "=0.7.0", path = "lib", default-features = false } +jj-lib = { version = "=0.8.0", path = "lib", default-features = false } maplit = "1.0.2" once_cell = "1.18.0" pest = "2.7.0" diff --git a/README.md b/README.md index 10ad400e3..fed270c59 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Jujutsu VCS -![](https://img.shields.io/github/license/martinvonz/jj) ![](https://img.shields.io/github/v/release/martinvonz/jj) ![](https://img.shields.io/github/release-date/martinvonz/jj) ![](https://img.shields.io/crates/v/jujutsu) +![](https://img.shields.io/github/license/martinvonz/jj) ![](https://img.shields.io/github/v/release/martinvonz/jj) ![](https://img.shields.io/github/release-date/martinvonz/jj) ![](https://img.shields.io/crates/v/jj-cli)
![](https://github.com/martinvonz/jj/workflows/build/badge.svg) ![](https://img.shields.io/codefactor/grade/github/martinvonz/jj/main) ![](https://img.shields.io/librariesio/github/martinvonz/jj) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 940c1d516..d07ae31b1 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jj-lib" -version = "0.7.0" +version = "0.8.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.64" diff --git a/lib/testutils/Cargo.toml b/lib/testutils/Cargo.toml index 0896ca12b..0a9beb433 100644 --- a/lib/testutils/Cargo.toml +++ b/lib/testutils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testutils" -version = "0.7.0" +version = "0.8.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.61"