-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CHANGELOG * Bump version * Update publish steps * Update Dockerfile * Update publish steps order * Include scale subxt metadata files
- Loading branch information
Showing
8 changed files
with
40 additions
and
24 deletions.
There are no files selected for viewing
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
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
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
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 = "contract-build" | ||
version = "3.0.1" | ||
version = "3.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -44,7 +44,7 @@ tokio-stream = "0.1" | |
bollard = "0.14" | ||
crossterm = "0.26.1" | ||
|
||
contract-metadata = { version = "3.0.1", path = "../metadata" } | ||
contract-metadata = { version = "3.1.0", path = "../metadata" } | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
users = "0.11" | ||
|
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 = "cargo-contract" | ||
version = "3.0.1" | ||
version = "3.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2021" | ||
|
@@ -14,13 +14,13 @@ description = "Setup and deployment tool for developing Wasm based smart contrac | |
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] | ||
categories = ["command-line-utilities", "development-tools::build-utils", "development-tools::cargo-plugins"] | ||
include = [ | ||
"Cargo.toml", "src/**/*.rs", "README.md", "LICENSE", "build.rs", "src/**/*.scale", | ||
"Cargo.toml", "src/**/*.rs", "README.md", "LICENSE", "build.rs", | ||
] | ||
|
||
[dependencies] | ||
contract-build = { version = "3.0.1", path = "../build" } | ||
contract-extrinsics = { version = "3.0.1", path = "../extrinsics" } | ||
contract-transcode = { version = "3.0.1", path = "../transcode" } | ||
contract-build = { version = "3.1.0", path = "../build" } | ||
contract-extrinsics = { version = "3.1.0", path = "../extrinsics" } | ||
contract-transcode = { version = "3.1.0", path = "../transcode" } | ||
|
||
anyhow = "1.0.72" | ||
clap = { version = "4.3.19", features = ["derive", "env"] } | ||
|
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 = "contract-extrinsics" | ||
version = "3.0.1" | ||
version = "3.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -11,12 +11,12 @@ documentation = "https://docs.rs/contract-extrinsics" | |
homepage = "https://www.substrate.io/" | ||
description = "Library defining extrinsics for smart contracts on substrate" | ||
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] | ||
include = ["Cargo.toml", "*.rs", "LICENSE"] | ||
include = ["Cargo.toml", "*.rs", "LICENSE", "src/**/*.scale",] | ||
|
||
[dependencies] | ||
contract-build = { version = "3.0.1", path = "../build" } | ||
contract-metadata = { version = "3.0.1", path = "../metadata" } | ||
contract-transcode = { version = "3.0.1", path = "../transcode" } | ||
contract-build = { version = "3.1.0", path = "../build" } | ||
contract-metadata = { version = "3.1.0", path = "../metadata" } | ||
contract-transcode = { version = "3.1.0", path = "../transcode" } | ||
|
||
anyhow = "1.0.72" | ||
clap = { version = "4.3.19", features = ["derive", "env"] } | ||
|
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 = "contract-metadata" | ||
version = "3.0.1" | ||
version = "3.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
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 = "contract-transcode" | ||
version = "3.0.1" | ||
version = "3.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -20,7 +20,7 @@ path = "src/lib.rs" | |
anyhow = "1.0.72" | ||
base58 = { version = "0.2.0" } | ||
blake2 = { version = "0.10.4", default-features = false } | ||
contract-metadata = { version = "3.0.1", path = "../metadata" } | ||
contract-metadata = { version = "3.1.0", path = "../metadata" } | ||
escape8259 = "0.5.2" | ||
hex = "0.4.3" | ||
indexmap = "2.0.0" | ||
|