Skip to content

Commit

Permalink
chore: release fvm, sdk, & shared (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Jun 29, 2023
1 parent cbd5feb commit c06182a
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 10 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 fvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Changes to the reference FVM implementation.

## [Unreleased]

## 2.5.0 (2023-06-28)

Breaking Changes:

- Update all IPLD crates, including cid & multihash.
- Update wasmtime to v10.

## 2.4.0 [2023-05-03]

- Update proofs to v14.
Expand Down
4 changes: 2 additions & 2 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm"
description = "Filecoin Virtual Machine reference implementation"
version = "2.4.0"
version = "2.5.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -19,7 +19,7 @@ derive_builder = "0.12.0"
num-derive = "0.3.3"
cid = { workspace = true, features = ["serde-codec"] }
multihash = { workspace = true }
fvm_shared = { version = "2.4.0", path = "../shared", features = ["crypto"] }
fvm_shared = { version = "2.5.0", path = "../shared", features = ["crypto"] }
fvm_ipld_hamt = { workspace = true }
fvm_ipld_amt = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.4.0 (2023-06-28)

Breaking Changes:

- Update all IPLD crates, including cid & multihash.

## 2.3.0 [2023-05-03]

Clippy fixes & non-debug build fixes. This release is optional.
Expand Down
4 changes: 2 additions & 2 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_sdk"
description = "Filecoin Virtual Machine actor development SDK"
version = "2.3.0"
version = "2.4.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -12,7 +12,7 @@ crate-type = ["lib"]

[dependencies]
cid = { workspace = true }
fvm_shared = { version = "2.4.0", path = "../shared" }
fvm_shared = { version = "2.5.0", path = "../shared" }
## num-traits; disabling default features makes it play nice with no_std.
num-traits = { version = "0.2.14", default-features = false }
lazy_static = { version = "1.4.0" }
Expand Down
7 changes: 7 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.5.0 (2023-06-28)

Breaking Changes:

- Update all IPLD crates, including cid & multihash.
- Update wasmtime to v10.

## 2.4.0 [2023-05-03]

- Update proofs to v14.
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_shared"
description = "Filecoin Virtual Machine shared types and functions"
version = "2.4.0"
version = "2.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
Expand Down
4 changes: 2 additions & 2 deletions testing/conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
fvm_shared = { version = "2.4.0", path = "../../shared" }
fvm_shared = { version = "2.5.0", path = "../../shared" }
fvm_ipld_hamt = { workspace = true }
fvm_ipld_amt = { workspace = true }
fvm_ipld_car = { workspace = true }
Expand Down Expand Up @@ -51,7 +51,7 @@ tar = { version = "0.4.38", default-features = false }
zstd = { version = "0.12.3", default-features = false }

[dependencies.fvm]
version = "2.4.0"
version = "2.5.0"
path = "../../fvm"
default-features = false
features = ["testing"]
Expand Down

0 comments on commit c06182a

Please sign in to comment.