-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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!
- Loading branch information
1 parent
e7bd7a6
commit eb79a21
Showing
5 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 ([email protected]) | ||
* 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 | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jujutsu" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Martin von Zweigbergk <[email protected]>"] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "jujutsu-lib" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Martin von Zweigbergk <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.61" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "testutils" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Martin von Zweigbergk <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.61" | ||
|