Skip to content

Commit d1c57f9

Browse files
committed
Bump all crates to version 2.2.0
This updates all crates to follow the version of the main project crate.
1 parent bace201 commit d1c57f9

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-interactive-rebase-tool"
3-
version = "2.1.0"
3+
version = "2.2.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."
@@ -35,7 +35,7 @@ members = [
3535
]
3636

3737
[dependencies]
38-
girt-core = {version = "1.0.0", path = "src/core"}
38+
girt-core = {version = "2.2.0", path = "src/core"}
3939

4040
[build-dependencies]
4141
rustc_version = "0.4.0"

src/config/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-config"
3-
version = "1.0.0"
3+
version = "2.2.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
anyhow = "1.0"
19-
girt-git = {version = "0.2.0", path = "../../src/git"}
19+
girt-git = {version = "2.2.0", path = "../../src/git"}
2020

2121
[dev-dependencies]
2222
lazy_static = "1.4.0"

src/core/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-core"
3-
version = "1.0.0"
3+
version = "2.2.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Core modules for git-interactive-rebase-tool"
@@ -21,12 +21,12 @@ lazy_static = "1.4.0"
2121
num-format = "0.4.0"
2222
pico-args = "0.4.2"
2323
unicode-segmentation = "1.9.0"
24-
girt-config = {version = "1.0.0", path = "../../src/config"}
25-
girt-display = {version = "1.0.0", path = "../../src/display"}
26-
girt-git = {version = "0.2.0", path = "../../src/git"}
27-
girt-input = {version = "1.0.0", path = "../../src/input"}
28-
girt-todo-file = {version = "1.0.0", path = "../../src/todo_file"}
29-
girt-view = {version = "1.1.0", path = "../../src/view"}
24+
girt-config = {version = "2.2.0", path = "../../src/config"}
25+
girt-display = {version = "2.2.0", path = "../../src/display"}
26+
girt-git = {version = "2.2.0", path = "../../src/git"}
27+
girt-input = {version = "2.2.0", path = "../../src/input"}
28+
girt-todo-file = {version = "2.2.0", path = "../../src/todo_file"}
29+
girt-view = {version = "2.2.0", path = "../../src/view"}
3030

3131
[dev-dependencies]
3232
captur = "0.1.0"

src/display/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-display"
3-
version = "1.0.0"
3+
version = "2.2.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
anyhow = "1.0"
1919
crossterm = "0.23.2"
20-
girt-config = {version = "1.0.0", path = "../config"}
20+
girt-config = {version = "2.2.0", path = "../config"}
2121

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

src/git/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-git"
3-
version = "0.2.0"
3+
version = "2.2.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Git module for git-interactive-rebase-tool"

src/input/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-input"
3-
version = "1.0.0"
3+
version = "2.2.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Input module for git-interactive-rebase-tool"
@@ -19,8 +19,8 @@ anyhow = "1.0"
1919
bitflags = "1.3.2"
2020
crossbeam-channel = "0.5.4"
2121
crossterm = "0.23.2"
22-
girt-config = {version = "1.0.0", path = "../config"}
2322
parking_lot = "0.12.0"
23+
girt-config = {version = "2.2.0", path = "../config"}
2424

2525
[dev-dependencies]
2626
rstest = "0.12.0"

src/todo_file/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-todo-file"
3-
version = "1.0.0"
3+
version = "2.2.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "Todo file systems for git-interactive-rebase-tool"

src/view/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "girt-view"
3-
version = "1.1.0"
3+
version = "2.2.0"
44
authors = ["Tim Oram <[email protected]>"]
55
license = "GPL-3.0-or-later"
66
description = "View modules for git-interactive-rebase-tool"
@@ -18,18 +18,18 @@ name = "view"
1818
anyhow = "1.0.57"
1919
bitflags = "1.3.2"
2020
crossbeam-channel = "0.5.4"
21-
girt-display = {version = "1.0.0", path = "../display"}
2221
parking_lot = "0.12.0"
2322
unicode-segmentation = "1.9.0"
2423
unicode-width = "0.1.9"
2524
xi-unicode = "0.3.0"
25+
girt-display = {version = "2.2.0", path = "../display"}
2626

2727
[dependencies.uuid]
2828
version = "1.0.0"
2929
features = ["v4", "fast-rng"]
3030

3131
[dev-dependencies]
32-
girt-config = {version = "1.0.0", path = "../config"}
32+
girt-config = {version = "2.2.0", path = "../config"}
3333

3434
[build-dependencies]
3535
rustc_version = "0.4.0"

0 commit comments

Comments
 (0)