Skip to content

Commit

Permalink
chore: Release Triton VM v0.44.0
Browse files Browse the repository at this point in the history
✨ Features

- Set minimum supported rust version (MSRV) (a6cc98a)

♻️ Refactor

- (!) Remove bracket syntax sugar for `call` (847b513)
- (!) Remove deprecated functions (5a16da9)
  • Loading branch information
jan-ferdinand committed Dec 9, 2024
1 parent ed1e8d6 commit 822fa9f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"

Expand Down

0 comments on commit 822fa9f

Please sign in to comment.