Skip to content

Commit

Permalink
docs: release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arxanas committed Aug 27, 2023
1 parent f796e94 commit 9ebe918
Show file tree
Hide file tree
Showing 21 changed files with 54 additions and 52 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [v0.8.0] - 2023-08-27

### Added

- (#545) EXPERIMENTAL: Added a `--fixup` option to `git move` to squash moved commits into the destination
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,20 @@ eden_dag = { package = "esl01-dag", version = "0.3.0" }
eyre = "0.6.8"
fslock = "0.2.1"
futures = "0.3.28"
git-branchless-hook = { version = "0.7.0", path = "git-branchless-hook" }
git-branchless-init = { version = "0.7.0", path = "git-branchless-init" }
git-branchless-invoke = { version = "0.7.0", path = "git-branchless-invoke" }
git-branchless-move = { version = "0.7.0", path = "git-branchless-move" }
git-branchless-navigation = { version = "0.7.0", path = "git-branchless-navigation" }
git-branchless-opts = { version = "0.7.0", path = "git-branchless-opts" }
git-branchless-query = { version = "0.7.0", path = "git-branchless-query" }
git-branchless-record = { version = "0.7.0", path = "git-branchless-record" }
git-branchless-revset = { version = "0.7.0", path = "git-branchless-revset" }
git-branchless-reword = { version = "0.7.0", path = "git-branchless-reword" }
git-branchless-smartlog = { version = "0.7.0", path = "git-branchless-smartlog" }
git-branchless-submit = { version = "0.7.0", path = "git-branchless-submit" }
git-branchless-test = { version = "0.7.0", path = "git-branchless-test" }
git-branchless-undo = { version = "0.7.0", path = "git-branchless-undo" }
git-branchless-hook = { version = "0.8.0", path = "git-branchless-hook" }
git-branchless-init = { version = "0.8.0", path = "git-branchless-init" }
git-branchless-invoke = { version = "0.8.0", path = "git-branchless-invoke" }
git-branchless-move = { version = "0.8.0", path = "git-branchless-move" }
git-branchless-navigation = { version = "0.8.0", path = "git-branchless-navigation" }
git-branchless-opts = { version = "0.8.0", path = "git-branchless-opts" }
git-branchless-query = { version = "0.8.0", path = "git-branchless-query" }
git-branchless-record = { version = "0.8.0", path = "git-branchless-record" }
git-branchless-revset = { version = "0.8.0", path = "git-branchless-revset" }
git-branchless-reword = { version = "0.8.0", path = "git-branchless-reword" }
git-branchless-smartlog = { version = "0.8.0", path = "git-branchless-smartlog" }
git-branchless-submit = { version = "0.8.0", path = "git-branchless-submit" }
git-branchless-test = { version = "0.8.0", path = "git-branchless-test" }
git-branchless-undo = { version = "0.8.0", path = "git-branchless-undo" }
git2 = { version = "0.17.2", default-features = false }
glob = "0.3.0"
indexmap = "2.0.0"
Expand All @@ -77,7 +77,7 @@ itertools = "0.11.0"
lalrpop = "0.19.12"
lalrpop-util = "0.19.12"
lazy_static = "1.4.0"
lib = { package = "git-branchless-lib", version = "0.7.0", path = "git-branchless-lib" }
lib = { package = "git-branchless-lib", version = "0.8.0", path = "git-branchless-lib" }
man = "0.3.0"
num_cpus = "1.16.0"
once_cell = "1.18.0"
Expand Down Expand Up @@ -105,6 +105,6 @@ vt100 = "0.15.2"
assert_cmd = "2.0.7"
cc = "1.0.83"
criterion = { version = "0.5.1", features = ["html_reports"] }
git-branchless-testing = { version = "0.7.0", path = "git-branchless-testing" }
git-branchless-testing = { version = "0.8.0", path = "git-branchless-testing" }
insta = "1.31.0"
maplit = "1.0.2"
2 changes: 1 addition & 1 deletion git-branchless-hook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-hook"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-init/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-init"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-invoke/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-invoke"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "git-branchless-lib"
repository = "https://github.com/arxanas/git-branchless"
rust-version = "1.64.0"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-move/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-move"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
eden_dag = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-navigation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-navigation"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
cursive = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-opts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-opts"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
clap = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-query"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-record/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-record"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
cursive = { version = "0.20.0", default-features = false, features = [ "crossterm-backend", ] }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-revset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-revset"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
bstr = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-reword/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-reword"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
bstr = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-smartlog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-smartlog"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
cursive_core = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-submit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-submit"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion git-branchless-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-test"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
bstr = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-branchless-testing"
version = "0.7.0"
version = "0.8.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion git-branchless-undo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "git-branchless-undo"
repository = "https://github.com/arxanas/git-branchless"
version = "0.7.0"
version = "0.8.0"

[dependencies]
cursive = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion git-branchless/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "git-branchless"
readme = "../README.md"
repository = "https://github.com/arxanas/git-branchless"
rust-version = "1.67.0"
version = "0.7.0"
version = "0.8.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions git-branchless/tests/test_init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ fn test_install_man_pages() -> eyre::Result<()> {
insta::assert_snapshot!(man_page_contents, @r###"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.TH git-branchless 1 "git-branchless 0.7.0"
.TH git-branchless 1 "git-branchless 0.8.0"
.SH NAME
git\-branchless \- Branchless workflow for Git
.SH SYNOPSIS
Expand Down Expand Up @@ -759,7 +759,7 @@ fn test_install_man_pages() -> eyre::Result<()> {
git\-branchless\-help(1)
Print this message or the help of the given subcommand(s)
.SH VERSION
v0.7.0
v0.8.0
.SH AUTHORS
Waleed Khan <[email protected]>
"###);
Expand Down

0 comments on commit 9ebe918

Please sign in to comment.