Skip to content

Commit 85d101a

Browse files
smrz2001Github Automation
andauthored
chore: version v0.56.0 (#736)
Co-authored-by: Github Automation <github@3box.io>
1 parent 9e0e0c0 commit 85d101a

File tree

13 files changed

+63
-42
lines changed

13 files changed

+63
-42
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,33 @@
22

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

5-
## [0.55.1] - 2025-06-17
5+
## [0.56.0] - 2025-08-28
6+
7+
### 🚀 Features
8+
9+
- Allow configuring daemon with extra interests ([#734](https://github.com/ceramicnetwork/rust-ceramic/issues/734))
10+
11+
### 🐛 Bug Fixes
12+
13+
- *(sdk)* Use correct controller during stream creation ([#724](https://github.com/ceramicnetwork/rust-ceramic/issues/724))
14+
- *(sdk)* Set correct unique value for mids with set relation ([#730](https://github.com/ceramicnetwork/rust-ceramic/issues/730))
15+
- Aggregator cache flush on shutdown ([#735](https://github.com/ceramicnetwork/rust-ceramic/issues/735))
16+
17+
### ⚙️ Miscellaneous Tasks
18+
19+
- *(sdk)* Version v0.11.0 ([#727](https://github.com/ceramicnetwork/rust-ceramic/issues/727))
20+
- *(sdk)* Version v0.12.0 ([#731](https://github.com/ceramicnetwork/rust-ceramic/issues/731))
21+
22+
## [0.55.1] - 2025-06-18
623

724
### 🐛 Bug Fixes
825

926
- Fetch unvalidated time proofs for conclusion events ([#723](https://github.com/ceramicnetwork/rust-ceramic/issues/723))
1027

28+
### ⚙️ Miscellaneous Tasks
29+
30+
- Version v0.55.1 ([#726](https://github.com/ceramicnetwork/rust-ceramic/issues/726))
31+
1132
## [0.55.0] - 2025-05-26
1233

1334
### 🚀 Features

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ zeroize = "1.4"
253253

254254

255255
[workspace.package]
256-
version = "0.55.1"
256+
version = "0.56.0"
257257
edition = "2021"
258258
authors = [
259259
"Danny Browning <dbrowning@3box.io>",

api-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ceramic-api-server"
3-
version = "0.55.1"
3+
version = "0.56.0"
44
authors = ["OpenAPI Generator team and contributors"]
55
description = "This is the Ceramic API for working with streams and events "
66
license = "MIT"

api-server/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ To see how to make this your own, look here:
1414

1515
[README]((https://openapi-generator.tech))
1616

17-
- API version: 0.55.1
18-
- Build date: 2025-06-17T17:37:16.638855454Z[Etc/UTC]
17+
- API version: 0.56.0
18+
- Build date: 2025-08-28T09:08:37.547252970Z[Etc/UTC]
1919

2020

2121

api-server/api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ info:
66
name: MIT
77
url: https://mit-license.org/
88
title: Ceramic API
9-
version: 0.55.1
9+
version: 0.56.0
1010
servers:
1111
- url: /ceramic
1212
paths:

api-server/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use swagger::{ApiError, ContextWrapper};
2121
type ServiceError = Box<dyn Error + Send + Sync + 'static>;
2222

2323
pub const BASE_PATH: &str = "/ceramic";
24-
pub const API_VERSION: &str = "0.55.1";
24+
pub const API_VERSION: &str = "0.56.0";
2525

2626
#[derive(Debug, PartialEq, Serialize, Deserialize)]
2727
pub enum ConfigNetworkGetResponse {

api/ceramic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
description: >
44
This is the Ceramic API for working with streams and events
5-
version: 0.55.1
5+
version: 0.56.0
66
title: Ceramic API
77
#license:
88
# name: Apache 2.0

kubo-rpc-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ceramic-kubo-rpc-server"
3-
version = "0.55.1"
3+
version = "0.56.0"
44
authors = ["OpenAPI Generator team and contributors"]
55
description = "This is the Kubo RPC API for working with IPLD data on IPFS This API only defines a small subset of the official API. "
66
license = "MIT"

kubo-rpc-server/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ To see how to make this your own, look here:
1414

1515
[README]((https://openapi-generator.tech))
1616

17-
- API version: 0.55.1
18-
- Build date: 2025-06-17T17:37:19.423107208Z[Etc/UTC]
17+
- API version: 0.56.0
18+
- Build date: 2025-08-28T09:08:40.206178294Z[Etc/UTC]
1919

2020

2121

0 commit comments

Comments
 (0)