Skip to content

Commit 19887b5

Browse files
authored
chore(bindings): release v0.10.9 (#107)
1 parent 3c6a17a commit 19887b5

7 files changed

Lines changed: 17 additions & 10 deletions

File tree

Cargo.lock

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Tangle Network's EVM-native staking and service blueprint protocol. Build decent
2323
## Installation
2424

2525
```bash
26-
forge soldeer install tnt-core~0.10.8
26+
forge soldeer install tnt-core~0.10.9
2727
```
2828

2929
Or add to `foundry.toml`:
3030
```toml
3131
[dependencies]
32-
tnt-core = "0.10.8"
32+
tnt-core = "0.10.9"
3333
```
3434

3535
## Quick Start
@@ -195,7 +195,7 @@ When an operator misbehaves or fails to perform their duties, the **BlueprintSer
195195
TNT Core supports three payment models: **PayOnce** (one-time payment at service creation), **Subscription** (recurring payments), and **EventBased** (pay per event or job execution). These are configured in the Blueprint's pricing contract.
196196

197197
### How do I build a custom Blueprint with TNT Core?
198-
Extend `BlueprintServiceManagerBase` in Solidity and implement the `onRequest` and `onJobResult` hooks. Install TNT Core via `forge soldeer install tnt-core~0.10.8` and import the base contract. See the Quick Start section above for a working example.
198+
Extend `BlueprintServiceManagerBase` in Solidity and implement the `onRequest` and `onJobResult` hooks. Install TNT Core via `forge soldeer install tnt-core~0.10.9` and import the base contract. See the Quick Start section above for a working example.
199199

200200
## License
201201

bindings/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.9] - 2026-04-23
11+
12+
### Changed
13+
14+
- Updated bindings from TNT Core contracts
15+
1016
## [0.10.8] - 2026-04-19
1117

1218
### Changed
@@ -238,7 +244,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
238244
- Raw ABI JSON exports via `abi` module
239245
- `TNT_CORE_VERSION` constant for commit tracking
240246

241-
[Unreleased]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.8...HEAD
247+
[Unreleased]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.9...HEAD
242248
[0.1.0]: https://github.com/tangle-network/tnt-core/releases/tag/bindings-v0.1.0
243249
[0.4.1]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.4.0...bindings-v0.4.1
244250
[0.4.2]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.4.1...bindings-v0.4.2
@@ -272,3 +278,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
272278
[0.10.7]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.6...bindings-v0.10.7
273279
[0.10.6]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.4...bindings-v0.10.6
274280
[0.10.8]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.7...bindings-v0.10.8
281+
[0.10.9]: https://github.com/tangle-network/tnt-core/compare/bindings-v0.10.8...bindings-v0.10.9

bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tnt-core-bindings"
3-
version = "0.10.8"
3+
version = "0.10.9"
44
edition = "2021"
55
rust-version = "1.81"
66
description = "Rust bindings for TNT Core Solidity contracts (Tangle staking protocol)"

bindings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Rust bindings for [TNT Core](https://github.com/tangle-network/tnt-core) Solidit
66

77
```toml
88
[dependencies]
9-
tnt-core-bindings = "0.10.8"
9+
tnt-core-bindings = "0.10.9"
1010
```
1111

1212
## Usage

bindings/TNT_CORE_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10bee28cafd9334c82b2a8ac5ec93fe8537b0e09
1+
3c6a17ac24bfc1cb3c757bd6c327aee690f4ddde

fixtures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tnt-core-fixtures"
3-
version = "0.10.8"
3+
version = "0.10.9"
44
edition = "2021"
55
rust-version = "1.81"
66
description = "Local testnet fixture data for TNT Core"

0 commit comments

Comments
 (0)