Skip to content

Commit 6174247

Browse files
committed
chore(release): perform release 8.0.0
1 parent 596a1b3 commit 6174247

File tree

7 files changed

+50
-21
lines changed

7 files changed

+50
-21
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# AXONE contracts
22

3+
## [8.0.0](https://github.com/axone-protocol/contracts/compare/v7.0.0...v8.0.0) (2025-10-14)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **cursor:** migrate cursor encoding to bin-it for structured serialization
9+
* **objectarium:** remove `owner` from Object
10+
* **objectarium:** ownership is now a first-class concept, separate from the bucket
11+
* **objectarium:** compression configuration is now defined at the bucket level
12+
instead of the object level, ensuring consistency and immutability.
13+
14+
### Features
15+
16+
* **logic-bindings:** introduce function for converting strings to Prolog atoms ([a6d5858](https://github.com/axone-protocol/contracts/commit/a6d58585bc94a85ee721a13948383061e8f57c43))
17+
* **objectarium:** ownership is now a first-class concept, separate from the bucket ([3cae3f4](https://github.com/axone-protocol/contracts/commit/3cae3f413a13eeed68046dccced7e76089880383))
18+
* **objectarium:** support query ObjectsPinnedBy with pagination ([330b8c0](https://github.com/axone-protocol/contracts/commit/330b8c04da967c24694449804c650baf4eea1649))
19+
20+
21+
### Performance Improvements
22+
23+
* **objectarium:** use keys_raw in is_pinned for lighter lookup ([db60a48](https://github.com/axone-protocol/contracts/commit/db60a487f501380f07b930b148f1c3ea0c1303f3))
24+
25+
26+
### Code Refactoring
27+
28+
* **cursor:** migrate cursor encoding to bin-it for structured serialization ([47cbf6a](https://github.com/axone-protocol/contracts/commit/47cbf6a70619c2eb2de50c2508b59c81dda54631))
29+
* **objectarium:** move compression configuration from object to bucket level ([c3fb1c5](https://github.com/axone-protocol/contracts/commit/c3fb1c5f082b4751e5fb1c620aad8ad71252e979)), closes [#583](https://github.com/axone-protocol/contracts/issues/583)
30+
* **objectarium:** remove `owner` from Object ([b36fbb1](https://github.com/axone-protocol/contracts/commit/b36fbb11cfe079d83cb7faf75ebe3446c96050f0))
31+
332
## [7.0.0](https://github.com/axone-protocol/contracts/compare/v6.0.0...v7.0.0) (2024-12-13)
433

534

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["cosmwasm", "blockchain"]
1010
license = "BSD-3-Clause"
1111
repository = "https://github.com/axone-protocol/contracts"
1212
rust-version = "1.81"
13-
version = "7.0.0"
13+
version = "8.0.0"
1414

1515
[profile.release]
1616
codegen-units = 1
@@ -24,17 +24,17 @@ panic = 'abort'
2424
rpath = false
2525

2626
[workspace.dependencies]
27-
axone-cognitarium = { path = "./contracts/axone-cognitarium", version = "7.0.0", features = [
27+
axone-cognitarium = { path = "./contracts/axone-cognitarium", version = "8.0.0", features = [
2828
"library",
2929
] }
30-
axone-cognitarium-client = { path = "./packages/axone-cognitarium-client", version = "7.0.0" }
31-
axone-logic-bindings = { path = "./packages/axone-logic-bindings", version = "7.0.0" }
32-
axone-objectarium = { path = "./contracts/axone-objectarium", version = "7.0.0", features = [
30+
axone-cognitarium-client = { path = "./packages/axone-cognitarium-client", version = "8.0.0" }
31+
axone-logic-bindings = { path = "./packages/axone-logic-bindings", version = "8.0.0" }
32+
axone-objectarium = { path = "./contracts/axone-objectarium", version = "8.0.0", features = [
3333
"library",
3434
] }
35-
axone-objectarium-client = { path = "./packages/axone-objectarium-client", version = "7.0.0" }
36-
axone-rdf = { path = "./packages/axone-rdf", version = "7.0.0" }
37-
axone-wasm = { path = "./packages/axone-wasm", version = "7.0.0" }
35+
axone-objectarium-client = { path = "./packages/axone-objectarium-client", version = "8.0.0" }
36+
axone-rdf = { path = "./packages/axone-rdf", version = "8.0.0" }
37+
axone-wasm = { path = "./packages/axone-wasm", version = "8.0.0" }
3838
cosmwasm-schema = "2.2.2"
3939
cosmwasm-std = { version = "2.2.2", features = ["cosmwasm_2_2"] }
4040
cosmwasm-storage = "1.5.2"

docs/axone-cognitarium.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,4 +925,4 @@ A named node constant.
925925

926926
---
927927

928-
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-cognitarium.json` (`cf0ad05cfbb0958c`)_
928+
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-cognitarium.json` (`7ba3e778bc6d4a8b`)_

docs/axone-dataverse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,5 +238,5 @@ let b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```
238238
239239
---
240240
241-
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-dataverse.json` (`e3b26772811bfe51`)*
241+
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-dataverse.json` (`854e4cf3e67b73f0`)*
242242
````

docs/axone-law-stone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ A string containing Base64-encoded data.
136136

137137
---
138138

139-
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-law-stone.json` (`df827252e2e559ce`)_
139+
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-law-stone.json` (`7546fa394dc640cf`)_

docs/axone-objectarium.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,5 +632,5 @@ Any existing pending ownership transfer is overwritten.
632632
633633
---
634634
635-
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-objectarium.json` (`adc112e13d1b0a4e`)*
635+
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-objectarium.json` (`9a941ffdcb12ddd9`)*
636636
````

0 commit comments

Comments
 (0)