Skip to content

Commit

Permalink
chore: release v0.0.92
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Jan 16, 2024
1 parent c22964a commit c585a2c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

- **BREAKING CHANGE:** Instance cache in host crate has been removed in favor of a deserialized module cache `DeserializedModuleCache`. An abstraction for caching (serialized & deserialized modules) called `ModuleCache` was added.
- Refactor: All logic related to modules and wasmer caching from `holochain` has been moved to the host crate. Consequently functions for wasmer development under iOS need to be imported from there.
## [0.0.92] - 2024-01-16

### Added
- Deserialized module cache `DeserializedModuleCache` was reinstated.
- An abstraction for caching (serialized & deserialized modules) called `ModuleCache` was added.
- All logic related to modules and wasmer caching from `holochain` has been moved to the host crate. Consequently functions for wasmer development under iOS need to be imported from there.

### Removed
- **BREAKING CHANGE:** Instance cache in host crate has been removed in favor of a deserialized module cache `DeserializedModuleCache`.

## [0.0.90]

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

[dependencies]
wasmer = "=4.2.4"
wasmer-middlewares = "=4.2.4"
holochain_wasmer_common = { version = "=0.0.90", path = "../common" }
holochain_wasmer_common = { version = "=0.0.92", path = "../common" }
holochain_serialized_bytes = "=0.0.53"
serde = "1"
tracing = "0.1"
Expand Down

0 comments on commit c585a2c

Please sign in to comment.