diff options
author | Tim Oram <dev@mitmaro.ca> | 2023-07-19 09:04:42 -0230 |
---|---|---|
committer | Tim Oram <dev@mitmaro.ca> | 2023-07-19 09:11:28 -0230 |
commit | 7eaa75ccf3e389cba44ebcfbb0d5496bf7ab7385 (patch) | |
tree | 2b7654a6a356b7d5d1a677bf4a3c581cdc8d59f0 | |
parent | bba877b0a50ff23bade7db386b27ef62f8918da0 (diff) |
Bump crates version to 2.3.0
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | src/config/Cargo.toml | 6 | ||||
-rw-r--r-- | src/core/Cargo.toml | 18 | ||||
-rw-r--r-- | src/display/Cargo.toml | 4 | ||||
-rw-r--r-- | src/git/Cargo.toml | 4 | ||||
-rw-r--r-- | src/input/Cargo.toml | 6 | ||||
-rw-r--r-- | src/runtime/Cargo.toml | 4 | ||||
-rw-r--r-- | src/testutils/Cargo.toml | 2 | ||||
-rw-r--r-- | src/todo_file/Cargo.toml | 4 | ||||
-rw-r--r-- | src/view/Cargo.toml | 8 |
11 files changed, 40 insertions, 40 deletions
@@ -316,7 +316,7 @@ dependencies = [ [[package]] name = "girt-config" -version = "2.2.0" +version = "2.3.0" dependencies = [ "claim", "girt-git", @@ -332,7 +332,7 @@ dependencies = [ [[package]] name = "girt-core" -version = "2.2.1" +version = "2.3.0" dependencies = [ "anyhow", "bitflags", @@ -361,7 +361,7 @@ dependencies = [ [[package]] name = "girt-display" -version = "2.2.0" +version = "2.3.0" dependencies = [ "crossterm", "girt-config", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "girt-git" -version = "2.2.0" +version = "2.3.0" dependencies = [ "chrono", "claim", @@ -391,7 +391,7 @@ dependencies = [ [[package]] name = "girt-input" -version = "2.2.0" +version = "2.3.0" dependencies = [ "anyhow", "bitflags", @@ -409,7 +409,7 @@ dependencies = [ [[package]] name = "girt-runtime" -version = "0.1.0" +version = "2.3.0" dependencies = [ "claim", "crossbeam-channel", @@ -421,14 +421,14 @@ dependencies = [ [[package]] name = "girt-testutils" -version = "0.1.0" +version = "2.3.0" dependencies = [ "rustc_version", ] [[package]] name = "girt-todo-file" -version = "2.2.0" +version = "2.3.0" dependencies = [ "claim", "girt-testutils", @@ -442,7 +442,7 @@ dependencies = [ [[package]] name = "girt-view" -version = "2.2.0" +version = "2.3.0" dependencies = [ "anyhow", "bitflags", @@ -462,7 +462,7 @@ dependencies = [ [[package]] name = "git-interactive-rebase-tool" -version = "2.2.1" +version = "2.3.0" dependencies = [ "girt-core", "rustc_version", @@ -1,6 +1,6 @@ [package] name = "git-interactive-rebase-tool" -version = "2.2.1" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Full feature terminal based sequence editor for git interactive rebase." @@ -37,7 +37,7 @@ members = [ ] [dependencies] -girt-core = {version = "2.2.1", path = "src/core"} +girt-core = {version = "2.3.0", path = "src/core"} [build-dependencies] rustc_version = "0.4.0" diff --git a/src/config/Cargo.toml b/src/config/Cargo.toml index 7ce1e4a..a9dcb64 100644 --- a/src/config/Cargo.toml +++ b/src/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-config" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Configuration for git-interactive-rebase-tool" @@ -16,7 +16,7 @@ name = "config" [dependencies] thiserror = "1.0.43" -girt-git = {version = "2.2.0", path = "../../src/git"} +girt-git = {version = "2.3.0", path = "../../src/git"} proc-macro2 = "1.0.66" # TODO: remove override of indirect dependency [dev-dependencies] @@ -25,7 +25,7 @@ lazy_static = "1.4.0" rstest = "0.18.1" serial_test = "2.0.0" tempfile = "3.6.0" -girt-testutils = {version = "0.1.0", path = "../testutils"} +girt-testutils = {version = "2.3.0", path = "../testutils"} [build-dependencies] rustc_version = "0.4.0" diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 78a2761..eeb1b2d 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-core" -version = "2.2.1" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Core modules for git-interactive-rebase-tool" @@ -25,20 +25,20 @@ num-format = "0.4.4" parking_lot = "0.12.1" pico-args = "0.5.0" unicode-segmentation = "1.10.1" -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-runtime = {version = "0.1.0", path = "../runtime"} -girt-todo-file = {version = "2.2.0", path = "../../src/todo_file"} -girt-view = {version = "2.2.0", path = "../../src/view"} +girt-config = {version = "2.3.0", path = "../../src/config"} +girt-display = {version = "2.3.0", path = "../../src/display"} +girt-git = {version = "2.3.0", path = "../../src/git"} +girt-input = {version = "2.3.0", path = "../../src/input"} +girt-runtime = {version = "2.3.0", path = "../runtime"} +girt-todo-file = {version = "2.3.0", path = "../../src/todo_file"} +girt-view = {version = "2.3.0", path = "../../src/view"} [dev-dependencies] claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" } pretty_assertions = "1.4.0" rstest = "0.18.1" serial_test = "2.0.0" -girt-view = {version = "2.2.0", path = "../../src/view", features = ["testutils"]} +girt-view = {version = "2.3.0", path = "../../src/view", features = ["testutils"]} [build-dependencies] chrono = "0.4.26" diff --git a/src/display/Cargo.toml b/src/display/Cargo.toml index 544f067..adba6c3 100644 --- a/src/display/Cargo.toml +++ b/src/display/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-display" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Display modules for git-interactive-rebase-tool" @@ -17,7 +17,7 @@ name = "display" [dependencies] crossterm = "0.26.1" thiserror = "1.0.43" -girt-config = {version = "2.2.0", path = "../config"} +girt-config = {version = "2.3.0", path = "../config"} [dev-dependencies] rstest = "0.18.1" diff --git a/src/git/Cargo.toml b/src/git/Cargo.toml index 0536a41..b5af456 100644 --- a/src/git/Cargo.toml +++ b/src/git/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-git" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Git module for git-interactive-rebase-tool" @@ -31,7 +31,7 @@ claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" } pretty_assertions = "1.4.0" rstest = "0.18.1" serial_test = "2.0.0" -girt-testutils = {version = "0.1.0", path = "../testutils"} +girt-testutils = {version = "2.3.0", path = "../testutils"} [build-dependencies] rustc_version = "0.4.0" diff --git a/src/input/Cargo.toml b/src/input/Cargo.toml index c2660a4..cb47857 100644 --- a/src/input/Cargo.toml +++ b/src/input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-input" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Input module for git-interactive-rebase-tool" @@ -21,8 +21,8 @@ captur = "0.1.0" crossbeam-channel = "0.5.8" crossterm = "0.26.1" parking_lot = "0.12.1" -girt-config = {version = "2.2.0", path = "../config"} -girt-runtime = {version = "0.1.0", path = "../runtime"} +girt-config = {version = "2.3.0", path = "../config"} +girt-runtime = {version = "2.3.0", path = "../runtime"} [dev-dependencies] rstest = "0.18.1" diff --git a/src/runtime/Cargo.toml b/src/runtime/Cargo.toml index 3a80d9f..e04ab2e 100644 --- a/src/runtime/Cargo.toml +++ b/src/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-runtime" -version = "0.1.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Core modules for git-interactive-rebase-tool" @@ -21,7 +21,7 @@ parking_lot = "0.12.1" [dev-dependencies] claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" } -girt-testutils = {version = "0.1.0", path = "../testutils"} +girt-testutils = {version = "2.3.0", path = "../testutils"} [build-dependencies] rustc_version = "0.4.0" diff --git a/src/testutils/Cargo.toml b/src/testutils/Cargo.toml index c443004..20fe926 100644 --- a/src/testutils/Cargo.toml +++ b/src/testutils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-testutils" -version = "0.1.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Test utils for git-interactive-rebase-tool" diff --git a/src/todo_file/Cargo.toml b/src/todo_file/Cargo.toml index 7cf1ea6..62fcb96 100644 --- a/src/todo_file/Cargo.toml +++ b/src/todo_file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-todo-file" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "Todo file systems for git-interactive-rebase-tool" @@ -24,7 +24,7 @@ claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" } pretty_assertions = "1.4.0" rstest = "0.18.1" tempfile = "3.6.0" -girt-testutils = {version = "0.1.0", path = "../testutils"} +girt-testutils = {version = "2.3.0", path = "../testutils"} [build-dependencies] rustc_version = "0.4.0" diff --git a/src/view/Cargo.toml b/src/view/Cargo.toml index 113a54c..935b6d1 100644 --- a/src/view/Cargo.toml +++ b/src/view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girt-view" -version = "2.2.0" +version = "2.3.0" authors = ["Tim Oram <dev@mitmaro.ca>"] license = "GPL-3.0-or-later" description = "View modules for git-interactive-rebase-tool" @@ -26,8 +26,8 @@ parking_lot = "0.12.1" unicode-segmentation = "1.10.1" unicode-width = "0.1.10" xi-unicode = "0.3.0" -girt-display = {version = "2.2.0", path = "../display"} -girt-runtime = {version = "0.1.0", path = "../runtime"} +girt-display = {version = "2.3.0", path = "../display"} +girt-runtime = {version = "2.3.0", path = "../runtime"} [dependencies.uuid] version = "1.4.1" @@ -35,7 +35,7 @@ features = ["v4", "fast-rng"] [dev-dependencies] claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" } -girt-config = {version = "2.2.0", path = "../config"} +girt-config = {version = "2.3.0", path = "../config"} [build-dependencies] rustc_version = "0.4.0" |