Skip to content

Commit

Permalink
Bump all crates to version 2.2.0
Browse files Browse the repository at this point in the history
This updates all crates to follow the version of the main project crate.
  • Loading branch information
MitMaro committed Apr 29, 2022
1 parent bace201 commit d1c57f9
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-interactive-rebase-tool"
version = "2.1.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Full feature terminal based sequence editor for git interactive rebase."
Expand Down Expand Up @@ -35,7 +35,7 @@ members = [
]

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

[build-dependencies]
rustc_version = "0.4.0"
Expand Down
4 changes: 2 additions & 2 deletions src/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-config"
version = "1.0.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Configuration for git-interactive-rebase-tool"
Expand All @@ -16,7 +16,7 @@ name = "config"

[dependencies]
anyhow = "1.0"
girt-git = {version = "0.2.0", path = "../../src/git"}
girt-git = {version = "2.2.0", path = "../../src/git"}

[dev-dependencies]
lazy_static = "1.4.0"
Expand Down
14 changes: 7 additions & 7 deletions src/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-core"
version = "1.0.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Core modules for git-interactive-rebase-tool"
Expand All @@ -21,12 +21,12 @@ lazy_static = "1.4.0"
num-format = "0.4.0"
pico-args = "0.4.2"
unicode-segmentation = "1.9.0"
girt-config = {version = "1.0.0", path = "../../src/config"}
girt-display = {version = "1.0.0", path = "../../src/display"}
girt-git = {version = "0.2.0", path = "../../src/git"}
girt-input = {version = "1.0.0", path = "../../src/input"}
girt-todo-file = {version = "1.0.0", path = "../../src/todo_file"}
girt-view = {version = "1.1.0", path = "../../src/view"}
girt-config = {version = "2.2.0", path = "../../src/config"}
girt-display = {version = "2.2.0", path = "../../src/display"}
girt-git = {version = "2.2.0", path = "../../src/git"}
girt-input = {version = "2.2.0", path = "../../src/input"}
girt-todo-file = {version = "2.2.0", path = "../../src/todo_file"}
girt-view = {version = "2.2.0", path = "../../src/view"}

[dev-dependencies]
captur = "0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/display/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-display"
version = "1.0.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Display modules for git-interactive-rebase-tool"
Expand All @@ -17,7 +17,7 @@ name = "display"
[dependencies]
anyhow = "1.0"
crossterm = "0.23.2"
girt-config = {version = "1.0.0", path = "../config"}
girt-config = {version = "2.2.0", path = "../config"}

[dev-dependencies]
rstest = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion src/git/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-git"
version = "0.2.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Git module for git-interactive-rebase-tool"
Expand Down
4 changes: 2 additions & 2 deletions src/input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-input"
version = "1.0.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Input module for git-interactive-rebase-tool"
Expand All @@ -19,8 +19,8 @@ anyhow = "1.0"
bitflags = "1.3.2"
crossbeam-channel = "0.5.4"
crossterm = "0.23.2"
girt-config = {version = "1.0.0", path = "../config"}
parking_lot = "0.12.0"
girt-config = {version = "2.2.0", path = "../config"}

[dev-dependencies]
rstest = "0.12.0"
Expand Down
2 changes: 1 addition & 1 deletion src/todo_file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-todo-file"
version = "1.0.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Todo file systems for git-interactive-rebase-tool"
Expand Down
6 changes: 3 additions & 3 deletions src/view/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girt-view"
version = "1.1.0"
version = "2.2.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "View modules for git-interactive-rebase-tool"
Expand All @@ -18,18 +18,18 @@ name = "view"
anyhow = "1.0.57"
bitflags = "1.3.2"
crossbeam-channel = "0.5.4"
girt-display = {version = "1.0.0", path = "../display"}
parking_lot = "0.12.0"
unicode-segmentation = "1.9.0"
unicode-width = "0.1.9"
xi-unicode = "0.3.0"
girt-display = {version = "2.2.0", path = "../display"}

[dependencies.uuid]
version = "1.0.0"
features = ["v4", "fast-rng"]

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

[build-dependencies]
rustc_version = "0.4.0"

0 comments on commit d1c57f9

Please sign in to comment.