mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
release: release version 0.8.0
Thanks to everyone who's contributed!
This commit is contained in:
parent
44eb83be46
commit
8149ec6df6
6 changed files with 40 additions and 8 deletions
32
CHANGELOG.md
32
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
|
||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jj-cli"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
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"
|
||||
|
|
|
@ -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)
|
||||
<br/>
|
||||
![](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)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jj-lib"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.64"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "testutils"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.61"
|
||||
|
|
Loading…
Reference in a new issue