Skip to content

Commit

Permalink
Release v0.0.53
Browse files Browse the repository at this point in the history
  • Loading branch information
freesig committed Dec 22, 2020
1 parent 7d1e845 commit 9ae94bf
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 15 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.53] - 2020-12-22

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.0.52] - 2020-12-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "holochain_wasmer_common"
description = "commons for both host and guest"
license = "GPL-3.0-only"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions crates/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "holochain_wasmer_guest"
description = "wasm guest code"
license = "GPL-3.0-only"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -14,6 +14,6 @@ crate-type = [ "cdylib", "rlib" ]
path = "src/guest.rs"

[dependencies]
holochain_wasmer_common = { version = "=0.0.52", path = "../common" }
holochain_wasmer_common = { version = "=0.0.53", path = "../common" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
4 changes: 2 additions & 2 deletions crates/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "holochain_wasmer_host"
description = "wasm host code"
license = "GPL-3.0-only"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

[dependencies]
wasmer-runtime-core = "=0.16.2"
wasmer-runtime = "=0.16.2"
holochain_wasmer_common = { version = "=0.0.52", path = "../common" }
holochain_wasmer_common = { version = "=0.0.53", path = "../common" }
lazy_static = "1.4.0"
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
Expand Down
4 changes: 2 additions & 2 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -10,7 +10,7 @@ holochain_wasmer_common = { path = "../crates/common" }
holochain_wasmer_host = { path = "../crates/host" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
test_common = { version = "=0.0.52", path = "./common" }
test_common = { version = "=0.0.53", path = "./common" }
criterion = "0.3"
rand = "0.7"
serde_bytes = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion test/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_common"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions test/test_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_wasm"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -11,6 +11,6 @@ path = "src/wasm.rs"

[dependencies]
holochain_wasmer_guest = { path = "../../crates/guest" }
test_common = { version = "=0.0.52", path = "../common" }
test_common = { version = "=0.0.53", path = "../common" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
2 changes: 1 addition & 1 deletion test/wasm_empty/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_wasm_empty"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions test/wasm_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_wasm_io"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -11,7 +11,7 @@ path = "src/wasm.rs"

[dependencies]
holochain_wasmer_guest = { path = "../../crates/guest" }
test_common = { version = "=0.0.52", path = "../common" }
test_common = { version = "=0.0.53", path = "../common" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
paste = "0.1.16"
4 changes: 2 additions & 2 deletions test/wasm_memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_wasm_memory"
version = "0.0.52"
version = "0.0.53"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -11,7 +11,7 @@ path = "src/wasm.rs"

[dependencies]
holochain_wasmer_guest = { path = "../../crates/guest" }
test_common = { version = "=0.0.52", path = "../common" }
test_common = { version = "=0.0.53", path = "../common" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
paste = "0.1.16"

0 comments on commit 9ae94bf

Please sign in to comment.