Skip to content

Commit 0032f83

Browse files
committed
chore(release): perform release 7.0.0
1 parent 446ae2c commit 0032f83

File tree

7 files changed

+47
-21
lines changed

7 files changed

+47
-21
lines changed

CHANGELOG.md

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

3+
## [7.0.0](https://github.com/axone-protocol/contracts/compare/v6.0.0...v7.0.0) (2024-12-13)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **dataverse:** rework and enhance vc stored context
9+
* **cognitarium:** rework WhereClause api design
10+
* **dataverse:** rename the metadata field to claims (SubmitClaims)
11+
12+
### Features
13+
14+
* **cognitarium:** add expression filtering in where clause ([945bc3a](https://github.com/axone-protocol/contracts/commit/945bc3a6c89e4ef90c1ef87294c77219090d5b79))
15+
* **cognitarium:** add the 'not' expression ([41a0a78](https://github.com/axone-protocol/contracts/commit/41a0a78b1e9082d179f3ad7a8731aeb2c49add20))
16+
* **cognitarium:** allow to build plan on lateral join based clause ([ac6854b](https://github.com/axone-protocol/contracts/commit/ac6854bed6d3f997f1381febb68e83080cf22fa7))
17+
* **cognitarium:** allow to issue term from variable ([29b9cf0](https://github.com/axone-protocol/contracts/commit/29b9cf01ec5985dc9dfb9d25cffffcccd46dfd1d))
18+
* **cognitarium:** introduce core expression design ([2a40d06](https://github.com/axone-protocol/contracts/commit/2a40d0644fb8cddfff30edb80b3d0841ad5198c4))
19+
* **cognitarium:** rework WhereClause api design ([da76633](https://github.com/axone-protocol/contracts/commit/da76633c3892b4defee99e3ab4c1de0b1618f24f))
20+
* **dataverse:** align with new cognitarium api ([ec13afa](https://github.com/axone-protocol/contracts/commit/ec13afab736d2d074de2ff3b6ed227fe6867b642))
21+
* **dataverse:** rework and enhance vc stored context ([eb52ace](https://github.com/axone-protocol/contracts/commit/eb52ace6397a8bac5723e2a731a3ba2c1961626c))
22+
* **dataverse:** support unverified credentials (tx signatures as proof) ([83c0305](https://github.com/axone-protocol/contracts/commit/83c03057bc090f1f05961bfcff57bffc86c0cb92))
23+
24+
25+
### Code Refactoring
26+
27+
* **dataverse:** rename the metadata field to claims (SubmitClaims) ([0febba9](https://github.com/axone-protocol/contracts/commit/0febba9f11f38884af16a76dd755db1bf8ad454d))
28+
329
## [6.0.0](https://github.com/axone-protocol/contracts/compare/v5.0.0...v6.0.0) (2024-08-02)
430

531

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.75"
13-
version = "6.0.0"
13+
version = "7.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 = "6.0.0", features = [
27+
axone-cognitarium = { path = "./contracts/axone-cognitarium", version = "7.0.0", features = [
2828
"library",
2929
] }
30-
axone-cognitarium-client = { path = "./packages/axone-cognitarium-client", version = "6.0.0" }
31-
axone-logic-bindings = { path = "./packages/axone-logic-bindings", version = "6.0.0" }
32-
axone-objectarium = { path = "./contracts/axone-objectarium", version = "6.0.0", features = [
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 = [
3333
"library",
3434
] }
35-
axone-objectarium-client = { path = "./packages/axone-objectarium-client", version = "6.0.0" }
36-
axone-rdf = { path = "./packages/axone-rdf", version = "6.0.0" }
37-
axone-wasm = { path = "./packages/axone-wasm", version = "6.0.0" }
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" }
3838
cosmwasm-schema = "2.1.5"
3939
cosmwasm-std = { version = "2.1.5", features = ["cosmwasm_2_1"] }
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` (`a6344c92b24801fb`)_
928+
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-cognitarium.json` (`197d77d83ca86dc6`)_

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` (`2d209bff84484c1c`)*
241+
*Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-dataverse.json` (`fc11528d7cda380f`)*
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` (`e30899a776e9d303`)_
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`)_

docs/axone-objectarium.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,4 +525,4 @@ A string containing a 128-bit integer in decimal representation.
525525

526526
---
527527

528-
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-objectarium.json` (`3a53bb06f9b58538`)_
528+
_Rendered by [Fadroma](https://fadroma.tech) ([@fadroma/schema 1.1.0](https://www.npmjs.com/package/@fadroma/schema)) from `axone-objectarium.json` (`a038d40e79d5ed02`)_

0 commit comments

Comments
 (0)