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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# 72.2.1 (api=3.1.0, abi=2.0.0)
# 72.1.8 (api=3.0.3, abi=2.0.0)
- Make builds more reproducible [#136](https://github.com/ZettaScaleLabs/stabby/pull/136) (thanks @pablo-smith-saronic for raising the issue and providing the fix)
- Fix CI for Rust 1.72, fix support for 1.72
- Enable more lints to prevent unexpected panics

# 72.1.4 (api=3.0.2, abi=2.0.0)
- Upgraded `syn` to `2.0.46+`.

# 72.1.2 (api=3.0.1, abi=2.0.0)
- Merged [#124](https://github.com/ZettaScaleLabs/stabby/pull/124), (thanks @matejcik for raising the issue and providing the fix, thanks @juliajohannessen for raising further lifetime issues through that PR's comments)
- Merged [#124](https://github.com/ZettaScaleLabs/stabby/pull/124) (thanks @matejcik for raising the issue and providing the fix, thanks @juliajohannessen for raising further lifetime issues through that PR's comments)
- Fixed [#127](https://github.com/ZettaScaleLabs/stabby/issues/127) (thanks @juliajohannessen for raising the issue)

# 72.1.2-rc1 (api=3.0.1, abi=2.0.0)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ license = " EPL-2.0 OR Apache-2.0"
categories = ["development-tools::ffi", "no-std::no-alloc"]
repository = "https://github.com/ZettaScaleLabs/stabby"
readme = "stabby/README.md"
version = "72.2.1" # Track
version = "72.1.8" # Track

[workspace.dependencies]
stabby-macros = { path = "./stabby-macros/", version = "72.2.1", default-features = false } # Track
stabby-abi = { path = "./stabby-abi/", version = "72.2.1", default-features = false } # Track
stabby = { path = "./stabby/", version = "72.2.1", default-features = false } # Track
stabby-macros = { path = "./stabby-macros/", version = "72.1.8", default-features = false } # Track
stabby-abi = { path = "./stabby-abi/", version = "72.1.8", default-features = false } # Track
stabby = { path = "./stabby/", version = "72.1.8", default-features = false } # Track

abi_stable = "0.11.0"
libc = "0.2"
Expand Down
Loading