Skip to content

Commit

Permalink
Release v0.0.67
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Feb 21, 2021
1 parent 187285d commit 7e2306e
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.67] - 2021-02-21

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.0.66] - 2021-02-09

### 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 = "4196212389cd318448689323175435f514e54dd1";
commit = "187285d9c2a4425dc4fd720fd15cf7cbefa3042f";

# 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.66";
current = "0.0.67";
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.66"
version = "0.0.67"
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.66"
version = "0.0.67"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

Expand All @@ -15,6 +15,6 @@ path = "src/guest.rs"

[dependencies]
holochain_serialized_bytes = { version = "=0.0.50", features = [] }
holochain_wasmer_common = { version = "=0.0.66", path = "../common" }
holochain_wasmer_common = { version = "=0.0.67", path = "../common" }
serde = "=1.0.123"
tracing = "0.1"
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.66"
version = "0.0.67"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2018"

[dependencies]
wasmer-runtime-core = "=0.16.2"
wasmer-runtime = "=0.16.2"
holochain_wasmer_common = { version = "=0.0.66", path = "../common" }
holochain_wasmer_common = { version = "=0.0.67", path = "../common" }
lazy_static = "1.4.0"
holochain_serialized_bytes = "=0.0.50"
serde = "=1.0.123"
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.66"
version = "0.0.67"
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.50"
serde = "=1.0.123"
test_common = { version = "=0.0.66", path = "./common" }
test_common = { version = "=0.0.67", 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.66"
version = "0.0.67"
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.66"
version = "0.0.67"
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.66", path = "../common" }
test_common = { version = "=0.0.67", path = "../common" }
holochain_serialized_bytes = "=0.0.50"
serde = "=1.0.123"
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.66"
version = "0.0.67"
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.66"
version = "0.0.67"
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.66", path = "../common" }
test_common = { version = "=0.0.67", path = "../common" }
holochain_serialized_bytes = "=0.0.50"
paste = "0.1.16"
serde = "=1.0.123"
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.66"
version = "0.0.67"
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.66", path = "../common" }
test_common = { version = "=0.0.67", path = "../common" }
holochain_serialized_bytes = "=0.0.50"
paste = "0.1.16"
serde = "=1.0.123"

0 comments on commit 7e2306e

Please sign in to comment.