Skip to content

Commit

Permalink
build: bump version to 0.0.98 (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg authored Jan 15, 2025
1 parent a4673d5 commit 81dce1e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.0.98] - 2025-01-15

### Changed
- Removed separate cargo workspaces for `crates/guest` and `test` and separate cargo projects for test wasms. Now all crates are members of a single cargo workspace.
- Re-enable CI testing on windows with feature `wasmer_wamr`.
Expand Down
6 changes: 3 additions & 3 deletions 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 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.97"
version = "0.0.98"
authors = ["thedavidmeister", "thedavidmeister@gmail.com"]
edition = "2021"

Expand Down
6 changes: 3 additions & 3 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.97"
version = "0.0.98"
authors = ["thedavidmeister", "thedavidmeister@gmail.com"]
edition = "2021"

Expand All @@ -13,11 +13,11 @@ path = "src/guest.rs"

[dependencies]
holochain_serialized_bytes = "=0.0.55"
holochain_wasmer_common = { version = "=0.0.97", path = "../common" }
holochain_wasmer_common = { version = "=0.0.98", path = "../common" }
serde = "1"
tracing = "0.1"
paste = "1.0"

[dev-dependencies]
holochain_wasmer_common = { version = "=0.0.97", path = "../common", features = ["fuzzing"] }
holochain_wasmer_common = { version = "=0.0.98", path = "../common", features = ["fuzzing"] }
test-fuzz = "6.0.0"
4 changes: 2 additions & 2 deletions crates/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "holochain_wasmer_host"
description = "wasm host code"
license = "Apache-2.0"
version = "0.0.97"
version = "0.0.98"
authors = ["thedavidmeister", "thedavidmeister@gmail.com"]
edition = "2021"

Expand All @@ -15,7 +15,7 @@ path = "src/lib.rs"
wasmer = { version = "5.0.2", default-features = false }
wasmer-middlewares = { version = "5.0.2", optional = true }

holochain_wasmer_common = { version = "=0.0.97", path = "../common" }
holochain_wasmer_common = { version = "=0.0.98", path = "../common" }
holochain_serialized_bytes = "=0.0.55"
serde = "1"
tracing = "0.1"
Expand Down

0 comments on commit 81dce1e

Please sign in to comment.