diff --git a/CHANGELOG.md b/CHANGELOG.md index 210bead9..444f89f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes are documented in this file. Lines marked “(!)” indicate a breaking change. +## [0.44.0](https://github.com/TritonVM/triton-vm/compare/v0.43.0..v0.44.0) - 2024-12-09 + +### ✨ Features + +- Set minimum supported rust version (MSRV) ([a6cc98a3](https://github.com/TritonVM/triton-vm/commit/a6cc98a3)) + +### ♻️ Refactor + +- (!) Remove bracket syntax sugar for `call` ([847b513e](https://github.com/TritonVM/triton-vm/commit/847b513e)) +- (!) Remove deprecated functions ([5a16da96](https://github.com/TritonVM/triton-vm/commit/5a16da96)) + ## [0.43.0](https://github.com/TritonVM/triton-vm/compare/v0.42.1..v0.43.0) - 2024-11-14 ### ✨ Features diff --git a/Cargo.toml b/Cargo.toml index 69d82cca..65a92e27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ opt-level = 1 build-override.opt-level = 3 [workspace.package] -version = "0.43.0" +version = "0.44.0" edition = "2021" rust-version = "1.80" authors = ["Triton Software AG"] @@ -36,22 +36,22 @@ readme = "README.md" documentation = "https://triton-vm.org/spec/" [workspace.dependencies.air] -version = "0.43.0" +version = "0.44.0" path = "triton-air" package = "triton-air" [workspace.dependencies.constraint-builder] -version = "0.43.0" +version = "0.44.0" path = "triton-constraint-builder" package = "triton-constraint-builder" [workspace.dependencies.constraint-circuit] -version = "0.43.0" +version = "0.44.0" path = "triton-constraint-circuit" package = "triton-constraint-circuit" [workspace.dependencies.isa] -version = "0.43.0" +version = "0.44.0" path = "triton-isa" package = "triton-isa"