Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

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

[workspace.package]
version = "3.13.1"
version = "3.13.2"
license = "MIT OR Apache-2.0"
edition = "2024"
repository = "https://github.com/filecoin-project/ref-fvm"
Expand All @@ -23,9 +23,9 @@ ipld-core = { version = "0.4.2", features = ["serde"] }
wasmtime = {version = "31.0.0", default-features = false, features = ["cranelift", "pooling-allocator", "parallel-compilation", "runtime"] }
wasmtime-environ = "31.0.0"

fvm = { path = "fvm", version = "~3.13.0", default-features = false }
fvm_shared = { path = "shared", version = "~3.13.0", default-features = false }
fvm_sdk = { path = "sdk", version = "~3.13.0" }
Comment on lines -26 to -28

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did we get these (and v2) wrong in the .1 releases?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To my understanding, the minor version is completely ignored with the tilde requirement. That is, ~3.13.0 is equivalent to ~3.13.42; perhaps we should just use ~3.13 so that the cargo set-version doesn't bother with it. What do you think?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, I guess it depends on what ends up in the lock, but it does seem like we should just keep them in step

fvm = { path = "fvm", version = "~3.13.2", default-features = false }
fvm_shared = { path = "shared", version = "~3.13.2", default-features = false }
fvm_sdk = { path = "sdk", version = "~3.13.2" }

fvm_ipld_hamt = { version = "0.10.4"}
fvm_ipld_amt = { version = "0.7.4"}
Expand Down
2 changes: 2 additions & 0 deletions fvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changes to the reference FVM implementation.

## [Unreleased]

## 3.13.2 [2025-08-27]

- Update `filecoin-proofs-api` to v19

## 3.13.1 [2025-04-15]
Expand Down
2 changes: 2 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## 3.13.2 [2025-08-27]

- Update `filecoin-proofs-api` to v19

## 3.13.1 [2025-04-15]
Expand Down
Loading