Skip to content

Commit

Permalink
fix: fix upgrade bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgos committed Dec 13, 2023
1 parent 4f4cd8e commit c912613
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
default-members = ["goup"]

[workspace.package]
version = "0.2.7"
version = "0.2.8"
authors = ["thinkgo <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
Expand Down
4 changes: 2 additions & 2 deletions goup-downloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ repository.workspace =true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
goup-consts = {path = "../goup-consts", version = "0.2.7"}
goup-version = {path = "../goup-version", version = "0.2.7"}
goup-consts = {path = "../goup-consts", version = "0.2.8"}
goup-version = {path = "../goup-version", version = "0.2.8"}
anyhow = "1.0"
dirs = "5.0"
regex = "1.10"
Expand Down
2 changes: 1 addition & 1 deletion goup-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository.workspace =true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
goup-consts = {path = "../goup-consts", version = "0.2.7"}
goup-consts = {path = "../goup-consts", version = "0.2.8"}
anyhow = "1.0"
dirs = "5.0"
regex = "1.10"
Expand Down
6 changes: 3 additions & 3 deletions goup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ version_check = "0.9"
shadow-rs = "0.25"

[dependencies]
goup-consts = {path = "../goup-consts", version = "0.2.7"}
goup-version = {path = "../goup-version", version = "0.2.7"}
goup-downloader = {path = "../goup-downloader", version = "0.2.7"}
goup-consts = {path = "../goup-consts", version = "0.2.8"}
goup-version = {path = "../goup-version", version = "0.2.8"}
goup-downloader = {path = "../goup-downloader", version = "0.2.8"}

clap = {version = "4.4", features = ["derive", "env"]}
clap_complete = "4.4"
Expand Down

0 comments on commit c912613

Please sign in to comment.