Skip to content

Commit 31783fe

Browse files
committed
Merge #184: Add DefaultTracker
813140b Updated CHANGELOG.md (Kyryl R) 7ee8559 Updated simplicityhl version (Kyryl R) 74f8c06 Dereference instead of clone on a Copy type (Kyryl R) 7e47e6b Add DefaultTracker (Kyryl R) 831ef38 Bump `simplicity-lang` version (Kyryl R) Pull request description: ACKs for top commit: apoelstra: ACK 813140b; successfully ran local tests Tree-SHA512: b367ceccb74756b2669442e1af0fb3a7d7c84cd5487040da107d880fd9f4b9491873f50d193d869b9e9f2e2f7c057c972a95d70d34e4ca3d3ef8a255c642c7b2
2 parents 5fd6593 + 813140b commit 31783fe

6 files changed

Lines changed: 538 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.0 - 2025-12-18
2+
3+
* Add `DefaultTracker` [#184](https://github.com/BlockstreamResearch/SimplicityHL/pull/184)
4+
15
# 0.3.0 - 2025-11-04
26

37
* Add `array_fold` builtin function [#145](https://github.com/BlockstreamResearch/SimplicityHL/pull/145)

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simplicityhl"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["sanket1729 <sanket1729@gmail.com>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/BlockstreamResearch/SimplicityHL"
@@ -27,7 +27,7 @@ pest = "2.1.3"
2727
pest_derive = "2.7.1"
2828
serde = { version = "1.0.188", features = ["derive"], optional = true }
2929
serde_json = { version = "1.0.105", optional = true }
30-
simplicity-lang = { version = "0.6.0" }
30+
simplicity-lang = { version = "0.7.0" }
3131
miniscript = "12.3.1"
3232
either = "1.12.0"
3333
itertools = "0.13.0"

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub mod pattern;
1414
#[cfg(feature = "serde")]
1515
mod serde;
1616
pub mod str;
17+
pub mod tracker;
1718
pub mod types;
1819
pub mod value;
1920
mod witness;

0 commit comments

Comments
 (0)