Skip to content

Commit 5669ea9

Browse files
smrz2001Github Automation
andauthored
chore: version v0.54.0 (#688)
Co-authored-by: Github Automation <github@3box.io>
1 parent 8b27e2c commit 5669ea9

13 files changed

Lines changed: 61 additions & 41 deletions

File tree

CHANGELOG.md

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

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

5+
## [0.54.0] - 2025-03-19
6+
7+
### 🚀 Features
8+
9+
- Add some validation logic to migration from-ipfs ([#685](https://github.com/ceramicnetwork/rust-ceramic/issues/685))
10+
11+
### 🐛 Bug Fixes
12+
13+
- Make sdk use correct id in data event payloads ([#673](https://github.com/ceramicnetwork/rust-ceramic/issues/673))
14+
- Use new default gnosis rpc endpoint ([#683](https://github.com/ceramicnetwork/rust-ceramic/issues/683))
15+
- Remove distinct step as its prohibitively expensive ([#682](https://github.com/ceramicnetwork/rust-ceramic/issues/682))
16+
17+
### ⚙️ Miscellaneous Tasks
18+
19+
- Do not deploy to durable envs ([#670](https://github.com/ceramicnetwork/rust-ceramic/issues/670))
20+
- Update CODEOWNERS ([#672](https://github.com/ceramicnetwork/rust-ceramic/issues/672))
21+
- Autogen sdk docs, ci check they are generated ([#674](https://github.com/ceramicnetwork/rust-ceramic/issues/674))
22+
- Use different gnosis rpc url ([#684](https://github.com/ceramicnetwork/rust-ceramic/issues/684))
23+
524
## [0.53.0] - 2025-03-10
625

726
### 🚀 Features
@@ -11,6 +30,7 @@ All notable changes to this project will be documented in this file.
1130
### ⚙️ Miscellaneous Tasks
1231

1332
- Migrates ceramic-tests to this repo ([#668](https://github.com/ceramicnetwork/rust-ceramic/issues/668))
33+
- Version v0.53.0 ([#671](https://github.com/ceramicnetwork/rust-ceramic/issues/671))
1434

1535
## [0.52.0] - 2025-02-24
1636

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
@@ -252,7 +252,7 @@ zeroize = "1.4"
252252

253253

254254
[workspace.package]
255-
version = "0.53.0"
255+
version = "0.54.0"
256256
edition = "2021"
257257
authors = [
258258
"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.53.0"
3+
version = "0.54.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.53.0
18-
- Build date: 2025-03-13T14:40:29.896781702-06:00[America/Denver]
17+
- API version: 0.54.0
18+
- Build date: 2025-03-19T21:24:59.000361838Z[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.53.0
9+
version: 0.54.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.53.0";
24+
pub const API_VERSION: &str = "0.54.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.53.0
5+
version: 0.54.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.53.0"
3+
version = "0.54.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.53.0
18-
- Build date: 2025-03-13T14:40:34.098465663-06:00[America/Denver]
17+
- API version: 0.54.0
18+
- Build date: 2025-03-19T21:25:01.917290764Z[Etc/UTC]
1919

2020

2121

0 commit comments

Comments
 (0)