From 80ccfa8bcc26685b4242b94b6ba8c0f4c11ad064 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Mon, 5 Dec 2022 08:38:47 -0800 Subject: [PATCH] release: release version 0.6.0 Lots of new features and important bugfixes. Thanks, everyone! --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05775c01e..39c684cf6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking changes +### New features + +### Fixed bugs + +### Contributors + +Thanks to the people who made this release happen! + +## [0.6.0] - 2022-12-05 + +### Breaking changes + * Dropped candidates set argument from `description(needle)`, `author(needle)`, `committer(needle)`, `merges()` revsets. Use `x & description(needle)` instead. diff --git a/Cargo.lock b/Cargo.lock index a14d3662e..be94515fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,7 +765,7 @@ dependencies = [ [[package]] name = "jujutsu" -version = "0.5.1" +version = "0.6.0" dependencies = [ "assert_cmd", "chrono", @@ -805,7 +805,7 @@ dependencies = [ [[package]] name = "jujutsu-lib" -version = "0.5.1" +version = "0.6.0" dependencies = [ "assert_matches", "backoff", diff --git a/Cargo.toml b/Cargo.toml index efe80f015..103248799 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jujutsu" -version = "0.5.1" +version = "0.6.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.60" # Remember to update CI @@ -44,7 +44,7 @@ dirs = "4.0.0" git2 = "0.15.0" hex = "0.4.3" itertools = "0.10.5" -jujutsu-lib = { version = "=0.5.1", path = "lib", default-features = false } +jujutsu-lib = { version = "=0.6.0", path = "lib", default-features = false } once_cell = "1.15.0" maplit = "1.0.2" pest = "2.5.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index fe2171660..4e47114fe 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jujutsu-lib" -version = "0.5.1" +version = "0.6.0" authors = ["Martin von Zweigbergk "] edition = "2021" rust-version = "1.60"