-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This updates all crates to follow the version of the main project crate.
- Loading branch information
Showing
9 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" |