Skip to content

Commit

Permalink
Bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
junha1 committed Sep 1, 2023
1 parent 1d650d9 commit e3b19a4
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 34 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.

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ tokio = { version = "1.0", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
log = "0.4"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-repository = { version = "0.1.0", path = "../repository" }
simperby = { version = "0.1.0", path = "../simperby" }
simperby-core = { version = "0.2.0", path = "../core" }
simperby-repository = { version = "0.2.0", path = "../repository" }
simperby = { version = "0.2.0", path = "../simperby" }
thiserror = "1.0.32"
semver = "1.0.0"
clap = { version = "=4.1.8", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-consensus"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,9 +18,9 @@ tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
log = "0.4"
thiserror = "1.0.32"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-network = { version = "0.1.0", path = "../network" }
vetomint = { version = "0.1.0", path = "../vetomint" }
simperby-core = { version = "0.2.0", path = "../core" }
simperby-network = { version = "0.2.0", path = "../network" }
vetomint = { version = "0.2.0", path = "../vetomint" }
parking_lot = "0.12.1"
hex = "0.4.3"

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-core"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions governance/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-governance"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,8 +18,8 @@ tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
log = "0.4"
thiserror = "1.0"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-network = { version = "0.1.0", path = "../network" }
simperby-core = { version = "0.2.0", path = "../core" }
simperby-network = { version = "0.2.0", path = "../network" }

[dev-dependencies]
rand = "0.8.5"
Expand Down
6 changes: 3 additions & 3 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-network"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -20,12 +20,12 @@ chrono = { version = "0.4", features = ["serde"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
futures = "0.3"
log = "0.4"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-core = { version = "0.2.0", path = "../core" }
# libp2p = { version = "0.50.0", features = ["tcp", "tokio", "yamux", "noise", "kad", "identify", "macros"], optional = true }
thiserror = "1.0"
serde-tc = "0.4.1"
reqwest = "0.11"
fs2 = { version = "0.4.3"}
fs2 = { version = "0.4.3" }
tokio-stream = { version = "0.1.11", features = ["fs"] }
ip_rfc = "0.1.0"
parking_lot = "0.12.1"
Expand Down
6 changes: 3 additions & 3 deletions repository/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-repository"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -19,8 +19,8 @@ futures = "0.3"
log = "0.4"
thiserror = "1.0.32"
git2 = "0.15.0"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-network = { version = "0.1.0", path = "../network" }
simperby-core = { version = "0.2.0", path = "../core" }
simperby-network = { version = "0.2.0", path = "../network" }
tempfile = "3"
url = "2.0"
regex = "1.7.0"
Expand Down
4 changes: 2 additions & 2 deletions settlement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby-settlement"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
log = "0.4"
thiserror = "1.0"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-core = { version = "0.2.0", path = "../core" }
rust_decimal = "1.25.0"
hex = "0.4.3"

Expand Down
12 changes: 6 additions & 6 deletions simperby/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simperby"
version = "0.1.0"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,11 +18,11 @@ tokio = { version = "1.0", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
log = "0.4"
simperby-core = { version = "0.1.0", path = "../core" }
simperby-network = { version = "0.1.0", path = "../network" }
simperby-governance = { version = "0.1.0", path = "../governance" }
simperby-consensus = { version = "0.1.0", path = "../consensus" }
simperby-repository = { version = "0.1.0", path = "../repository" }
simperby-core = { version = "0.2.0", path = "../core" }
simperby-network = { version = "0.2.0", path = "../network" }
simperby-governance = { version = "0.2.0", path = "../governance" }
simperby-consensus = { version = "0.2.0", path = "../consensus" }
simperby-repository = { version = "0.2.0", path = "../repository" }
thiserror = "1.0.32"
semver = "1.0.0"

Expand Down
2 changes: 1 addition & 1 deletion vetomint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vetomint"
version = "0.1.1"
version = "0.2.0"
authors = ["PDAO Team <hello@postech-dao.xyz>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit e3b19a4

Please sign in to comment.