Skip to content

Commit

Permalink
chore: release v2.9.0
Browse files Browse the repository at this point in the history
Also switch to workspace-based versioning so we can more easily release
everything all at once.
  • Loading branch information
Stebalien committed Sep 12, 2024
1 parent c730efc commit 9b7a1dd
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 17 deletions.
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.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ members = [
"testing/conformance",
]

[workspace.package]
version = "2.9.0"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
authors = ["Protocol Labs", "Filecoin Core Devs"]

[workspace.dependencies]
cid = { version = "0.10.1", default-features = false }
multihash = { version = "0.18.1", default-features = false }
Expand Down
6 changes: 6 additions & 0 deletions fvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changes to the reference FVM implementation.

## [Unreleased]

## 2.9.0 (2024-09-12)

- Update to wasmtime 24.
- Switch from mach ports to unix signal handlers on macos.
- Update misc dependencies.

## 2.8.0 (2024-06-12)

- Update `filecoin-proofs-api` to v18
Expand Down
10 changes: 5 additions & 5 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fvm"
description = "Filecoin Virtual Machine reference implementation"
version = "2.8.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors.workspace = true
keywords = ["filecoin", "web3", "wasm"]

[lib]
Expand Down
4 changes: 4 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.9.0 (2024-09-12)

- Update misc dependencies.

## 2.4.0 (2023-06-28)

Breaking Changes:
Expand Down
10 changes: 5 additions & 5 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fvm_sdk"
description = "Filecoin Virtual Machine actor development SDK"
version = "2.4.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
repository = "https://github.com/filecoin-project/ref-fvm"
authors.workspace = true
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true

[lib]
crate-type = ["lib"]
Expand Down
4 changes: 4 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.9.0 (2024-09-12)

- Update misc dependencies.

## 2.7.0 (2024-06-12)

- Update `filecoin-proofs-api` to v18
Expand Down
8 changes: 4 additions & 4 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fvm_shared"
description = "Filecoin Virtual Machine shared types and functions"
version = "2.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
blake2b_simd = "1.0.0"
Expand Down

0 comments on commit 9b7a1dd

Please sign in to comment.