From c585a2c04d4734c0caab522345eddc29449df7cc Mon Sep 17 00:00:00 2001 From: Jost Schulte Date: Tue, 16 Jan 2024 11:25:51 -0600 Subject: [PATCH] chore: release v0.0.92 --- CHANGELOG.md | 11 +++++++++-- crates/common/Cargo.toml | 2 +- crates/guest/Cargo.toml | 4 ++-- crates/host/Cargo.toml | 4 ++-- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc558f2..568a1a52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 3ac6bef0..0f3d0801 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -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", "thedavidmeister@gmail.com" ] edition = "2021" diff --git a/crates/guest/Cargo.toml b/crates/guest/Cargo.toml index 1beb5ff9..816b4069 100644 --- a/crates/guest/Cargo.toml +++ b/crates/guest/Cargo.toml @@ -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", "thedavidmeister@gmail.com" ] edition = "2021" @@ -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" diff --git a/crates/host/Cargo.toml b/crates/host/Cargo.toml index bc437e17..c58fbe65 100644 --- a/crates/host/Cargo.toml +++ b/crates/host/Cargo.toml @@ -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", "thedavidmeister@gmail.com" ] 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"