Skip to content

Commit

Permalink
Merge pull request #26 from airgap-it/develop
Browse files Browse the repository at this point in the history
chore: bump version to 0.1.4
  • Loading branch information
RomarQ authored Apr 4, 2023
2 parents 9bb6ade + d59063b commit 71e58ce
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions tezos-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos-contract"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,14 +10,14 @@ derive_more = "0.99.17"
async-trait = "0.1"

# Local dependencies
tezos-core = { path = "../tezos-core", version = "0.1.3" }
tezos-rpc = { path = "../tezos-rpc", version = "0.1.3", default-features = false }
tezos-michelson = { path = "../tezos-michelson", version = "0.1.3" }
tezos-operation = { path = "../tezos-operation", version = "0.1.3" }
tezos-core = { path = "../tezos-core" }
tezos-rpc = { path = "../tezos-rpc", default-features = false }
tezos-michelson = { path = "../tezos-michelson" }
tezos-operation = { path = "../tezos-operation" }

[dev-dependencies]
tokio = { version = "1.19", features = ["macros"] }
httpmock = { version = "0.6" }

[features]
default = [ "tezos-rpc/default" ]
default = [ "tezos-rpc/default" ]
2 changes: 1 addition & 1 deletion tezos-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos-core"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions tezos-michelson/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos-michelson"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -15,7 +15,7 @@ serde = { version = "1", features = ["derive"], optional = true }
chrono = { version = "0.4", features = ["std"], default-features = false }
lazy_static = "1"

tezos-core = { path = "../tezos-core", version = "0.1.3" }
tezos-core = { path = "../tezos-core" }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
8 changes: 4 additions & 4 deletions tezos-operation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos-operation"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

[dependencies]
Expand All @@ -10,8 +10,8 @@ num-traits = "0.2"
num-derive = "0.3"
hex = "0.4"

tezos-core = { path = "../tezos-core", version = "0.1.3" }
tezos-michelson = { path = "../tezos-michelson", version = "0.1.3" }
tezos-core = { path = "../tezos-core" }
tezos-michelson = { path = "../tezos-michelson" }

[dev-dependencies]
hex-literal = "0.3"
Expand All @@ -20,4 +20,4 @@ hex-literal = "0.3"
full_crypto = ["ed25519", "secp256_k1", "p256"]
ed25519 = ["tezos-core/ed25519"]
secp256_k1 = ["tezos-core/secp256_k1"]
p256 = ["tezos-core/p256"]
p256 = ["tezos-core/p256"]
8 changes: 4 additions & 4 deletions tezos-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos-rpc"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -15,9 +15,9 @@ chrono = { version = "0.4", features = ["serde", "std"], default-features = fal
async-trait = "0.1"

# Local dependencies
tezos-core = { path = "../tezos-core", version = "0.1.3", features = ["serde"] }
tezos-michelson = { path = "../tezos-michelson", version = "0.1.3", features = ["serde"] }
tezos-operation = { path = "../tezos-operation", version = "0.1.3" }
tezos-core = { path = "../tezos-core", features = ["serde"] }
tezos-michelson = { path = "../tezos-michelson", features = ["serde"] }
tezos-operation = { path = "../tezos-operation" }

[dev-dependencies]
tokio = { version = "1.19", features = ["macros"] }
Expand Down

0 comments on commit 71e58ce

Please sign in to comment.