Skip to content

Commit

Permalink
dump v0.2.1 version (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
atenjin authored Apr 27, 2021
1 parent fe7b75f commit 8ae2170
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 50 deletions.
48 changes: 15 additions & 33 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion bin/europa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"
description = "A sandbox of Substrate runtime execution environment."
Expand Down
2 changes: 1 addition & 1 deletion bin/europa/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa-cli"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion bin/europa/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa-executor"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion bin/europa/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa-rpc"
version = "0.2.0"
version = "0.2.1"
authors = ["Jupiter <https://github.com/patractlabs/jupiter>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion bin/europa/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa-runtime"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-client-api"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-cli"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-client-db"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-executor"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-rpc"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion client/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ec-service"
version = "0.2.0"
version = "0.2.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
10 changes: 4 additions & 6 deletions primitives/sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[package]
name = "ep-sandbox"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>", "patract labs <https://github.com/patractlabs>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "This crate provides means to instantiate and execute wasm modules."
readme = "README.md"

Expand All @@ -16,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
patract-wasmi = { package = "wasmi", git = "https://github.com/patractlabs/wasmi", branch = "v0.6.2", optional = true }
wasmi = { version = "0.6.2", optional = true }
wasmtime = { version = "0.22.0", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1" }
codec = { package = "parity-scale-codec", version = "2.0.0" }

sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
Expand All @@ -31,4 +29,4 @@ assert_matches = "1.3.0"
default = [ "std" ]
std = [ "jit"]
jit = [ "wasmtime" ]
interpreter = [ "patract-wasmi", "wasmi" ]
interpreter = [ "patract-wasmi", "wasmi" ]

0 comments on commit 8ae2170

Please sign in to comment.