Skip to content

Commit

Permalink
chore: release everything (#2071)
Browse files Browse the repository at this point in the history
And I mean, _EVERYTHING_.

- `fvm`, `fvm_shared`, `fvm_sdk`, and `fvm_integration_tests` 4.5.0
- `fvm_ipld_bitfield` 0.7.0
- `fvm_ipld_amt` 0.7.0
- `fvm_ipld_hamt` 0.10.0
- `fvm_ipld_kamt` 0.4.0
- `fvm_ipld_car` 0.8.0
- `fvm_ipld_blockstore` 0.3.0
- `fvm_ipld_encoding` 0.5.0
  • Loading branch information
Stebalien authored Oct 31, 2024
1 parent f1f29dd commit 4f717b4
Show file tree
Hide file tree
Showing 19 changed files with 310 additions and 241 deletions.
440 changes: 220 additions & 220 deletions Cargo.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
]

[workspace.package]
version = "4.4.3"
version = "4.5.0"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
Expand Down Expand Up @@ -73,19 +73,19 @@ minstant = "0.1.3"
coverage-helper = "0.2.0"

# workspace (FVM)
fvm = { path = "fvm", version = "~4.4.3", default-features = false }
fvm_shared = { path = "shared", version = "~4.4.3", default-features = false }
fvm_sdk = { path = "sdk", version = "~4.4.3" }
fvm_integration_tests = { path = "testing/integration", version = "~4.4.3" }
fvm = { path = "fvm", version = "~4.5.0", default-features = false }
fvm_shared = { path = "shared", version = "~4.5.0", default-features = false }
fvm_sdk = { path = "sdk", version = "~4.5.0" }
fvm_integration_tests = { path = "testing/integration", version = "~4.5.0" }

# workspace (other)
fvm_ipld_amt = { path = "ipld/amt", version = "0.6.2" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.9.0" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.3.0" }
fvm_ipld_car = { path = "ipld/car", version = "0.7.1" }
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.2.1" }
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.6.0" }
fvm_ipld_encoding = { path = "ipld/encoding", version = "0.4.0" }
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.0" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.0" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.0" }
fvm_ipld_car = { path = "ipld/car", version = "0.8.0" }
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.3.0" }
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.7.0" }
fvm_ipld_encoding = { path = "ipld/encoding", version = "0.5.0" }
fvm_gas_calibration_shared = { path = "testing/calibration/shared" }
fvm_test_actors = { path = "testing/test_actors" }

Expand Down
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]

## 4.5.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
Expand Down
7 changes: 7 additions & 0 deletions ipld/amt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## 0.7.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.6.2 [2023-09-28)

Fix a bug in `for_each_ranged` if the start offset exceeds the max possible value in the AMT (due to the AMT's height).
Expand Down
2 changes: 1 addition & 1 deletion ipld/amt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_amt"
description = "Sharded IPLD Array implementation."
version = "0.6.2"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
7 changes: 7 additions & 0 deletions ipld/bitfield/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Changes to Filecoin's Bitfield library.

## [Unreleased]

## 0.3.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.6.0 [2023-08-31]

- Bumps `fvm_ipld_encoding` to 0.4.0, and `fvm_ipld_blockstore` to 0.2.0.
Expand Down
2 changes: 1 addition & 1 deletion ipld/bitfield/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_bitfield"
description = "Bitfield logic for use in Filecoin actors"
version = "0.6.0"
version = "0.7.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
6 changes: 6 additions & 0 deletions ipld/blockstore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changes to the FVM's Blockstore abstraction

## [Unreleased]

## 0.3.0 [2024-10-31]

Update cid to v0.11 and multihash to v0.19.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.2.1 [2024-04-30]

- Constify `Block::new`.
Expand Down
2 changes: 1 addition & 1 deletion ipld/blockstore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_blockstore"
description = "Sharded IPLD Blockstore."
version = "0.2.1"
version = "0.3.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
11 changes: 9 additions & 2 deletions ipld/car/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,18 @@ Changes to the FVM's CAR implementation.

## [Unreleased]

## 0.7.0 [2023-09-06)
## 0.8.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.7.1 [2023-09-06]

Replace the internal integer-encoding dependency with unsigned-varint. This won't affect users but cleans up our dependency tree a bit.

## 0.7.0 [2023-06-28)
## 0.7.0 [2023-06-28]

Breaking Changes:

Expand Down
2 changes: 1 addition & 1 deletion ipld/car/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_car"
description = "IPLD CAR handling library"
version = "0.7.1"
version = "0.8.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions ipld/encoding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changes to the FVM's shared encoding utilities.

## [Unreleased]

## 0.5.0 [2024-10-31]

Update `cid` to v0.11 and `multihash` to v0.19.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.4.0 [2023-06-28)

Breaking Changes:
Expand Down
2 changes: 1 addition & 1 deletion ipld/encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_encoding"
description = "Sharded IPLD encoding."
version = "0.4.0"
version = "0.5.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
8 changes: 8 additions & 0 deletions ipld/hamt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ Changes to the reference FVM's HAMT implementation.

## [Unreleased]

## 0.10.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.
- Switch from [libipld](https://github.com/ipld/libipld) to [rust-ipld-core](https://github.com/ipld/rust-ipld-core/).

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.9.0 (2023-10-25)

Breaking Changes:
Expand Down
2 changes: 1 addition & 1 deletion ipld/hamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_hamt"
description = "Sharded IPLD HashMap implementation."
version = "0.9.0"
version = "0.10.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
7 changes: 7 additions & 0 deletions ipld/kamt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.4.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 0.3.0 [2023-06-28)

Breaking Changes:
Expand Down
2 changes: 1 addition & 1 deletion ipld/kamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_kamt"
description = "Sharded IPLD Map implementation with level skipping."
version = "0.3.0"
version = "0.4.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
7 changes: 7 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## 4.5.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
Expand Down
7 changes: 7 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## 4.5.0 [2024-10-31]

- Update `cid` to v0.11 and `multihash` to v0.19.
- Update to `fvm_ipld_blockstore` 0.3.0 and `fvm_ipld_encoding` 0.5.0.

You will have to update your multihash and cid crates to be compatible, see the [multihash release notes](https://github.com/multiformats/rust-multihash/blob/master/CHANGELOG.md#-2023-06-06) for details on the breaking changes.

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
Expand Down

0 comments on commit 4f717b4

Please sign in to comment.