Skip to content

Commit 489409d

Browse files
committed
chore: Release
1 parent c5488ae commit 489409d

File tree

6 files changed

+77
-9
lines changed

6 files changed

+77
-9
lines changed

CHANGELOG.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,70 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.17.0-rc3] - 2025-03-26
6+
7+
### 🐛 Bug Fixes
8+
9+
- Refactor escrow database
10+
- Adjust delegation tests
11+
- Validate receipt signatures in pw escrow
12+
- Allow setting next threshold in group incept
13+
14+
### 🚜 Refactor
15+
16+
- Add partially witnessed escrow submodule
17+
- Adjust partially escrow tests
18+
19+
### ⚙️ Miscellaneous Tasks
20+
21+
- Remove unused imports
22+
23+
## [0.17.0-rc2] - 2025-03-12
24+
25+
### 🐛 Bug Fixes
26+
27+
- Update watcher dependencies
28+
- Update failing test
29+
30+
### ⚙️ Miscellaneous Tasks
31+
32+
- Update dependencies
33+
34+
## [0.17.0-rc1] - 2025-02-27
35+
36+
### 🚀 Features
37+
38+
- Derive rkyv's Archive, Serialize, and Deserialize for IdentifierState
39+
- Persist identifier key states in events_db for better tracking
40+
- Replace compute_state function with get_key_state in EventStorage
41+
- Change keys in database
42+
- Use redb in out of order escrow
43+
44+
### 🐛 Bug Fixes
45+
46+
- Compute signature index instead of using 0
47+
- Return receipts as attachments
48+
- Save published receipts sn in db
49+
- Execute add_kel_finalized_event operations in transaction
50+
- Update witness and watcher workspaces
51+
52+
### 🚜 Refactor
53+
54+
- Remove unnecessary clone
55+
- Split redb module into multiple files
56+
57+
### 🧪 Testing
58+
59+
- Add delegation tests
60+
- Add assertions for key_state in test_retrieve_kel
61+
62+
### ⚙️ Miscellaneous Tasks
63+
64+
- Reformat and fix warnings
65+
- Add processing events benchmark
66+
- Cargo fmt and update test
67+
- Update rust version in dockers
68+
569
## [0.16.0] - 2025-01-29
670

771
### 🚀 Features
@@ -15,6 +79,10 @@ All notable changes to this project will be documented in this file.
1579
- Warnings and failing tests
1680
- Fix test_updates
1781

82+
### ⚙️ Miscellaneous Tasks
83+
84+
- Release
85+
1886
## [0.15.1] - 2025-01-16
1987

2088
### 🐛 Bug Fixes

components/controller/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "keri-controller"
3-
version = "0.16.0"
3+
version = "0.17.0-rc3"
44
description = "KERI Identifier Management Library"
55
authors.workspace = true
66
edition.workspace = true
@@ -12,8 +12,8 @@ repository.workspace = true
1212
[dependencies]
1313
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
1414
futures = "0.3.24"
15-
keri-core = { path = "../../keriox_core", version = "0.16.0", features = ["oobi", "mailbox"] }
16-
teliox = {path = "../../support/teliox", version = "0.16.0" }
15+
keri-core = { path = "../../keriox_core", version = "0.17.0-rc3", features = ["oobi", "mailbox"] }
16+
teliox = {path = "../../support/teliox", version = "0.17.0-rc3" }
1717
thiserror = "1.0"
1818
serde_json = "1.0"
1919
url = "2.3.1"

components/watcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "watcher"
3-
version = "0.16.0"
3+
version = "0.17.0-rc3"
44
publish = false
55
authors.workspace = true
66
edition.workspace = true

components/witness/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "witness"
3-
version = "0.16.0"
3+
version = "0.17.0-rc3"
44
publish = false
55
authors.workspace = true
66
edition.workspace = true

keriox_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "keri-core"
3-
version = "0.16.0"
3+
version = "0.17.0-rc3"
44
description = "Core library for the Key Event Receipt Infrastructure "
55
authors.workspace = true
66
edition.workspace = true
@@ -69,4 +69,4 @@ pre-release-hook = ["git", "cliff", "--tag", "{{version}}", "-r", "../", "--outp
6969

7070
[[bench]]
7171
name = "bench"
72-
harness = false
72+
harness = false

support/teliox/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "teliox"
3-
version = "0.16.0"
3+
version = "0.17.0-rc3"
44
description = "Library for the Transaction Event Log"
55
authors.workspace = true
66
edition.workspace = true
@@ -10,7 +10,7 @@ repository.workspace = true
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
keri-core = {path = "../../keriox_core", version = "0.16.0", features = ["oobi", "mailbox"]}
13+
keri-core = {path = "../../keriox_core", version = "0.17.0-rc3", features = ["oobi", "mailbox"]}
1414
said = { version = "0.4.0" }
1515
cesrox = { version = "0.1.4" }
1616
base64 = "0.13.0"

0 commit comments

Comments
 (0)