Skip to content

Commit 19cd57b

Browse files
smrz2001Github Automation
andauthored
chore: version v0.55.0 (#722)
Co-authored-by: Github Automation <github@3box.io>
1 parent 910cdf8 commit 19cd57b

File tree

13 files changed

+83
-41
lines changed

13 files changed

+83
-41
lines changed

CHANGELOG.md

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

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

5+
## [0.55.0] - 2025-05-26
6+
7+
### 🚀 Features
8+
9+
- Conflict resolution scaffolding ([#687](https://github.com/ceramicnetwork/rust-ceramic/issues/687))
10+
11+
### 🐛 Bug Fixes
12+
13+
- Update more sdk repo urls ([#703](https://github.com/ceramicnetwork/rust-ceramic/issues/703))
14+
- Skip private sdk packages ([#705](https://github.com/ceramicnetwork/rust-ceramic/issues/705))
15+
- *(sdk)* Use recursive pnpm publish instead of npm publish
16+
- Random things like feed queries, query CLI, migration logging, deps ([#708](https://github.com/ceramicnetwork/rust-ceramic/issues/708))
17+
- *(sdk)* Add missing pnpm prepare directive
18+
- Modify set account relation validation ([#713](https://github.com/ceramicnetwork/rust-ceramic/issues/713))
19+
- Prevent panic on duplicate tracing initialization ([#718](https://github.com/ceramicnetwork/rust-ceramic/issues/718))
20+
21+
### 📚 Documentation
22+
23+
- Improved docs and logging for `migrations from-ipfs` ([#695](https://github.com/ceramicnetwork/rust-ceramic/issues/695))
24+
25+
### ⚙️ Miscellaneous Tasks
26+
27+
- *(sdk)* Version v0.6.0 ([#704](https://github.com/ceramicnetwork/rust-ceramic/issues/704))
28+
- *(sdk)* Version v0.7.0 ([#706](https://github.com/ceramicnetwork/rust-ceramic/issues/706))
29+
- Sdk docs update ([#709](https://github.com/ceramicnetwork/rust-ceramic/issues/709))
30+
- *(sdk)* Version v0.8.0 ([#711](https://github.com/ceramicnetwork/rust-ceramic/issues/711))
31+
- *(sdk)* Version v0.9.0 ([#712](https://github.com/ceramicnetwork/rust-ceramic/issues/712))
32+
- *(sdk)* Version v0.10.0 ([#720](https://github.com/ceramicnetwork/rust-ceramic/issues/720))
33+
34+
## [0.5.0] - 2025-03-22
35+
36+
### 🐛 Bug Fixes
37+
38+
- Use correct paths in sdk release script ([#699](https://github.com/ceramicnetwork/rust-ceramic/issues/699))
39+
- Update more sdk repo urls ([#701](https://github.com/ceramicnetwork/rust-ceramic/issues/701))
40+
41+
### ⚙️ Miscellaneous Tasks
42+
43+
- *(sdk)* Version v0.4.0 ([#700](https://github.com/ceramicnetwork/rust-ceramic/issues/700))
44+
- *(sdk)* Version v0.5.0 ([#702](https://github.com/ceramicnetwork/rust-ceramic/issues/702))
45+
546
## [0.54.2] - 2025-03-21
647

748
### 🐛 Bug Fixes
@@ -11,6 +52,7 @@ All notable changes to this project will be documented in this file.
1152
### ⚙️ Miscellaneous Tasks
1253

1354
- *(sdk)* Version v0.3.0 ([#694](https://github.com/ceramicnetwork/rust-ceramic/issues/694))
55+
- Version v0.54.2 ([#697](https://github.com/ceramicnetwork/rust-ceramic/issues/697))
1456

1557
## [0.54.1] - 2025-03-21
1658

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.54.2"
256+
version = "0.55.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.54.2"
3+
version = "0.55.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.54.2
18-
- Build date: 2025-03-21T21:34:55.156812863Z[Etc/UTC]
17+
- API version: 0.55.0
18+
- Build date: 2025-05-26T16:30:54.625348079Z[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.54.2
9+
version: 0.55.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.54.2";
24+
pub const API_VERSION: &str = "0.55.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.54.2
5+
version: 0.55.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.54.2"
3+
version = "0.55.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.54.2
18-
- Build date: 2025-03-21T21:34:57.812185848Z[Etc/UTC]
17+
- API version: 0.55.0
18+
- Build date: 2025-05-26T16:30:57.234587214Z[Etc/UTC]
1919

2020

2121

0 commit comments

Comments
 (0)