-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to 0.3.0 * Bump soroban-rpc version to 0.3.0 * Don't publish soroban-tools * Remove soroban-tools * Remove soroban-tools * fix build.rs * fix build.rs * undo changing version that should be injected during build * Bugfixes for e2e tests in release/v0.3.0 branch (#294) * Fix account sequence numbers when deploy --wasm-hash Fixes #290 Fixes regression introduced in eadacec * Fix conflicting contract ids in e2e tests * Stop hard-coding salts in e2e tests to make them more robust This also means they are now independent, and do not need a clean network to run. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Paul Bellamy <[email protected]> Co-authored-by: Leigh McCulloch <[email protected]>
- Loading branch information
1 parent
36a0dd2
commit 46e72d8
Showing
12 changed files
with
42 additions
and
119 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,54 +1,5 @@ | ||
[package] | ||
name = "soroban-tools" | ||
description = "Soroban Tools" | ||
homepage = "https://github.com/stellar/soroban-cli" | ||
repository = "https://github.com/stellar/soroban-cli" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
version = "0.2.1" | ||
edition = "2021" | ||
rust-version = "1.65" | ||
autobins = false | ||
build = "build.rs" | ||
|
||
[build-dependencies] | ||
crate-git-revision = "0.0.4" | ||
|
||
[[bin]] | ||
name = "soroban" | ||
path = "cmd/soroban-cli/src/main.rs" | ||
|
||
[dependencies] | ||
soroban-env-host = { workspace = true, features = ["vm", "serde", "hostfn_log_fmt_values"] } | ||
soroban-spec = { workspace = true } | ||
soroban-token-spec = { workspace = true } | ||
stellar-strkey = { workspace = true } | ||
clap = { version = "3.1.18", features = ["derive", "env"] } | ||
base64 = "0.13.0" | ||
thiserror = "1.0.31" | ||
serde = "1.0.82" | ||
serde_derive = "1.0.82" | ||
serde_json = "1.0.82" | ||
hex = "0.4.3" | ||
tokio = { version = "1", features = ["full"] } | ||
warp = "0.3" | ||
clap_complete = "3.2.3" | ||
rand = "0.8.5" | ||
wasmparser = "0.90.0" | ||
sha2 = "0.10.6" | ||
csv = "1.1.6" | ||
ed25519-dalek = "1.0.1" | ||
jsonrpsee-http-client = "0.15.1" | ||
jsonrpsee-core = "0.15.1" | ||
regex = "1.6.0" | ||
wasm-opt = "0.110.1" | ||
|
||
[dev_dependencies] | ||
assert_cmd = "2.0.4" | ||
assert_fs = "1.0.7" | ||
|
||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"cmd/soroban-cli", | ||
"cmd/soroban-cli/tests/fixtures/test-wasms/hello_world", | ||
|
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 |
---|---|---|
|
@@ -6,11 +6,10 @@ repository = "https://github.com/stellar/soroban-cli" | |
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
version = "0.1.2" | ||
version = "0.3.0" | ||
edition = "2021" | ||
rust-version = "1.64" | ||
autobins = false | ||
build = "../../build.rs" | ||
|
||
[[bin]] | ||
name = "soroban" | ||
|
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
cmd/soroban-cli/tests/fixtures/test-wasms/hello_world/Cargo.toml
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 = "test_hello_world" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
2 changes: 1 addition & 1 deletion
2
cmd/soroban-cli/tests/fixtures/test-wasms/invoker_account_exists/Cargo.toml
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 = "test_invoker_account_exists" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
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
File renamed without changes.
File renamed without changes.
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