Skip to content

Commit

Permalink
[Core] Bump version to v20.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hydai committed Mar 13, 2021
1 parent 2f75501 commit 9651f74
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ oasis-ethwasi-runtime-common = { path = "./common" }
oasis-ethwasi-runtime-keymanager = { path = "./keymanager-runtime" }

# Oasis core.
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

# Parity.
common-types = { git = "https://github.com/second-state/oasis-parity", branch = "ssvm" }
Expand All @@ -45,7 +45,7 @@ slog = "2.4.1"
thiserror = "1.0"

[build-dependencies]
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

[dev-dependencies]
assert_matches = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion OASIS_CORE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.12.4
20.12.5
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ docker pull secondstate/oasis-ssvm
- Get source code from Github.

```bash
git clone https://github.com/oasisprotocol/oasis-core.git --branch v20.12.4
git clone https://github.com/oasisprotocol/oasis-core.git --branch v20.12.5
git clone https://github.com/second-state/oasis-ssvm-runtime.git --branch ssvm
```

Expand Down Expand Up @@ -92,7 +92,7 @@ docker exec -it oasis-ssvm bash
and

```bash
node ~/code/oasis-runtime/resources/erc20/erc20.js
node ~/code/oasis-ssvm-runtime/resources/erc20/erc20.js
```

The result should be the same as the following content.
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Oasis Labs Inc. <[email protected]>"]
edition = "2018"

[dependencies]
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

ethereum-types = { version = "0.3", default-features = false, features = ["std", "serialize"] }
serde = "1.0.71"
Expand Down
4 changes: 2 additions & 2 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Oasis Labs Inc. <[email protected]>"]

[dependencies]
# Oasis Core.
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

# Parity.
ethcore = { git = "https://github.com/second-state/oasis-parity", branch = "ssvm" }
Expand Down
6 changes: 3 additions & 3 deletions gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ wasmi = "0.4"
oasis-ethwasi-runtime-common = { path = "../common" }

## Oasis Core client dependencies.
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-keymanager-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-ethwasi-runtime-api = { path = "../api" }

anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Oasis Labs Inc. <[email protected]>"]
[dependencies]
oasis-ethwasi-runtime-common = { path = "../common" }

oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-client = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

clap = "2.29.1"
ethereum-types = { version = "0.3", default-features = false, features = ["std", "serialize"] }
Expand Down
8 changes: 4 additions & 4 deletions keymanager-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ stack-size = 2097152
threads = 2

[dependencies]
oasis-core-keymanager-api-common = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-keymanager-lib = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-keymanager-api-common = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-keymanager-lib = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }
oasis-core-runtime = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

[build-dependencies]
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.4" }
oasis-core-tools = { git = "https://github.com/oasisprotocol/oasis-core", tag = "v20.12.5" }

[features]
benchmarking = []

0 comments on commit 9651f74

Please sign in to comment.