Skip to content

Commit 7eaa75c

Browse files
committed
Bump crates version to 2.3.0
1 parent bba877b commit 7eaa75c

File tree

11 files changed

+40
-40
lines changed

11 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-interactive-rebase-tool"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Full feature terminal based sequence editor for git interactive rebase."
@@ -37,7 +37,7 @@ members = [
3737
]
3838

3939
[dependencies]
40-
girt-core = {version = "2.2.1", path = "src/core"}
40+
girt-core = {version = "2.3.0", path = "src/core"}
4141

4242
[build-dependencies]
4343
rustc_version = "0.4.0"

src/config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-config"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Configuration for git-interactive-rebase-tool"
@@ -16,7 +16,7 @@ name = "config"
1616

1717
[dependencies]
1818
thiserror = "1.0.43"
19-
girt-git = {version = "2.2.0", path = "../../src/git"}
19+
girt-git = {version = "2.3.0", path = "../../src/git"}
2020
proc-macro2 = "1.0.66" # TODO: remove override of indirect dependency
2121

2222
[dev-dependencies]
@@ -25,7 +25,7 @@ lazy_static = "1.4.0"
2525
rstest = "0.18.1"
2626
serial_test = "2.0.0"
2727
tempfile = "3.6.0"
28-
girt-testutils = {version = "0.1.0", path = "../testutils"}
28+
girt-testutils = {version = "2.3.0", path = "../testutils"}
2929

3030
[build-dependencies]
3131
rustc_version = "0.4.0"

src/core/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-core"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Core modules for git-interactive-rebase-tool"
@@ -25,20 +25,20 @@ num-format = "0.4.4"
2525
parking_lot = "0.12.1"
2626
pico-args = "0.5.0"
2727
unicode-segmentation = "1.10.1"
28-
girt-config = {version = "2.2.0", path = "../../src/config"}
29-
girt-display = {version = "2.2.0", path = "../../src/display"}
30-
girt-git = {version = "2.2.0", path = "../../src/git"}
31-
girt-input = {version = "2.2.0", path = "../../src/input"}
32-
girt-runtime = {version = "0.1.0", path = "../runtime"}
33-
girt-todo-file = {version = "2.2.0", path = "../../src/todo_file"}
34-
girt-view = {version = "2.2.0", path = "../../src/view"}
28+
girt-config = {version = "2.3.0", path = "../../src/config"}
29+
girt-display = {version = "2.3.0", path = "../../src/display"}
30+
girt-git = {version = "2.3.0", path = "../../src/git"}
31+
girt-input = {version = "2.3.0", path = "../../src/input"}
32+
girt-runtime = {version = "2.3.0", path = "../runtime"}
33+
girt-todo-file = {version = "2.3.0", path = "../../src/todo_file"}
34+
girt-view = {version = "2.3.0", path = "../../src/view"}
3535

3636
[dev-dependencies]
3737
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
3838
pretty_assertions = "1.4.0"
3939
rstest = "0.18.1"
4040
serial_test = "2.0.0"
41-
girt-view = {version = "2.2.0", path = "../../src/view", features = ["testutils"]}
41+
girt-view = {version = "2.3.0", path = "../../src/view", features = ["testutils"]}
4242

4343
[build-dependencies]
4444
chrono = "0.4.26"

src/display/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-display"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Display modules for git-interactive-rebase-tool"
@@ -17,7 +17,7 @@ name = "display"
1717
[dependencies]
1818
crossterm = "0.26.1"
1919
thiserror = "1.0.43"
20-
girt-config = {version = "2.2.0", path = "../config"}
20+
girt-config = {version = "2.3.0", path = "../config"}
2121

2222
[dev-dependencies]
2323
rstest = "0.18.1"

src/git/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-git"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Git module for git-interactive-rebase-tool"
@@ -31,7 +31,7 @@ claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
3131
pretty_assertions = "1.4.0"
3232
rstest = "0.18.1"
3333
serial_test = "2.0.0"
34-
girt-testutils = {version = "0.1.0", path = "../testutils"}
34+
girt-testutils = {version = "2.3.0", path = "../testutils"}
3535

3636
[build-dependencies]
3737
rustc_version = "0.4.0"

src/input/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-input"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Input module for git-interactive-rebase-tool"
@@ -21,8 +21,8 @@ captur = "0.1.0"
2121
crossbeam-channel = "0.5.8"
2222
crossterm = "0.26.1"
2323
parking_lot = "0.12.1"
24-
girt-config = {version = "2.2.0", path = "../config"}
25-
girt-runtime = {version = "0.1.0", path = "../runtime"}
24+
girt-config = {version = "2.3.0", path = "../config"}
25+
girt-runtime = {version = "2.3.0", path = "../runtime"}
2626

2727
[dev-dependencies]
2828
rstest = "0.18.1"

src/runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-runtime"
3-
version = "0.1.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Core modules for git-interactive-rebase-tool"
@@ -21,7 +21,7 @@ parking_lot = "0.12.1"
2121

2222
[dev-dependencies]
2323
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
24-
girt-testutils = {version = "0.1.0", path = "../testutils"}
24+
girt-testutils = {version = "2.3.0", path = "../testutils"}
2525

2626
[build-dependencies]
2727
rustc_version = "0.4.0"

src/testutils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-testutils"
3-
version = "0.1.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Test utils for git-interactive-rebase-tool"

src/todo_file/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-todo-file"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Todo file systems for git-interactive-rebase-tool"
@@ -24,7 +24,7 @@ claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
2424
pretty_assertions = "1.4.0"
2525
rstest = "0.18.1"
2626
tempfile = "3.6.0"
27-
girt-testutils = {version = "0.1.0", path = "../testutils"}
27+
girt-testutils = {version = "2.3.0", path = "../testutils"}
2828

2929
[build-dependencies]
3030
rustc_version = "0.4.0"

0 commit comments

Comments
 (0)