Skip to content

Commit

Permalink
Release v0.0.54
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Jan 6, 2021
1 parent 20e5bf4 commit ee797fc
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 17 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.54] - 2021-01-06

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.0.53] - 2021-01-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ echo "All finished!!!"
# the commit hash that the release process should target
# this will always be behind what ends up being deployed
# the release process needs to add some commits for changelog etc.
commit = "f988cc481a6a46827ee385c134226b8d54c4119c";
commit = "20e5bf460f207172b0b250456962342a097369ca";

# the semver for prev and current releases
# the previous version will be scanned/bumped by release scripts
# the current version is what the release scripts bump *to*
version = {
current = "0.0.53";
current = "0.0.54";
previous = "_._._";
};

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.53"
version = "0.0.54"
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.53"
version = "0.0.54"
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.53", path = "../common" }
holochain_wasmer_common = { version = "=0.0.54", 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.53"
version = "0.0.54"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

[dependencies]
wasmer-runtime-core = "=0.16.2"
wasmer-runtime = "=0.16.2"
holochain_wasmer_common = { version = "=0.0.53", path = "../common" }
holochain_wasmer_common = { version = "=0.0.54", 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.53"
version = "0.0.54"
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.53", path = "./common" }
test_common = { version = "=0.0.54", 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.53"
version = "0.0.54"
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.53"
version = "0.0.54"
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.53", path = "../common" }
test_common = { version = "=0.0.54", 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.53"
version = "0.0.54"
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.53"
version = "0.0.54"
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.53", path = "../common" }
test_common = { version = "=0.0.54", 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.53"
version = "0.0.54"
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.53", path = "../common" }
test_common = { version = "=0.0.54", path = "../common" }
holochain_serialized_bytes = "=0.0.47"
serde = "=1.0.104"
paste = "0.1.16"

0 comments on commit ee797fc

Please sign in to comment.