Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Nov 16, 2023
1 parent 3552723 commit 96ab367
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
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.87]

- support file cache for serialized modules
- host function metering support

## [0.0.86]

- Support wasmer 4.x
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 = "Apache-2.0"
version = "0.0.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

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 = "Apache-2.0"
version = "0.0.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

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

[dependencies]
holochain_serialized_bytes = { version = "=0.0.53", features = [] }
holochain_wasmer_common = { version = "=0.0.86", path = "../common" }
holochain_wasmer_common = { version = "=0.0.87", path = "../common" }
serde = "1"
tracing = "0.1"
parking_lot = "0.12"
Expand Down
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 = "Apache-2.0"
version = "0.0.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

[dependencies]
wasmer = "=4.2.2"
wasmer-middlewares = "=4.2.2"
holochain_wasmer_common = { version = "=0.0.86", path = "../common" }
holochain_wasmer_common = { version = "=0.0.87", path = "../common" }
holochain_serialized_bytes = "=0.0.53"
serde = "1"
tracing = "0.1"
Expand Down
8 changes: 4 additions & 4 deletions test/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 test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test"
version = "0.0.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

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.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion 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.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

Expand Down
6 changes: 3 additions & 3 deletions test/wasm_empty/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 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.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion 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.86"
version = "0.0.87"
authors = [ "thedavidmeister", "[email protected]" ]
edition = "2021"

Expand Down

0 comments on commit 96ab367

Please sign in to comment.