Skip to content

Commit 5422a83

Browse files
smrz2001Github Automation
and
Github Automation
authored
chore: version v0.53.0 (#671)
Co-authored-by: Github Automation <[email protected]>
1 parent 9b1cc42 commit 5422a83

File tree

13 files changed

+55
-41
lines changed

13 files changed

+55
-41
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,26 @@
22

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

5+
## [0.53.0] - 2025-03-10
6+
7+
### 🚀 Features
8+
9+
- Make ceramic-sdk part of the repo, promote flight sql and aggregator ([#669](https://github.com/ceramicnetwork/rust-ceramic/issues/669))
10+
11+
### ⚙️ Miscellaneous Tasks
12+
13+
- Migrates ceramic-tests to this repo ([#668](https://github.com/ceramicnetwork/rust-ceramic/issues/668))
14+
515
## [0.52.0] - 2025-02-24
616

717
### 🚀 Features
818

919
- Schema validation ([#663](https://github.com/ceramicnetwork/rust-ceramic/issues/663))
1020

21+
### ⚙️ Miscellaneous Tasks
22+
23+
- Version v0.52.0 ([#667](https://github.com/ceramicnetwork/rust-ceramic/issues/667))
24+
1125
## [0.51.0] - 2025-02-18
1226

1327
### 🚀 Features

Cargo.lock

+28-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ zeroize = "1.4"
252252

253253

254254
[workspace.package]
255-
version = "0.52.0"
255+
version = "0.53.0"
256256
edition = "2021"
257257
authors = [
258258
"Danny Browning <[email protected]>",

api-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ceramic-api-server"
3-
version = "0.52.0"
3+
version = "0.53.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

+2-2
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.52.0
18-
- Build date: 2025-02-24T18:07:18.331130859Z[Etc/UTC]
17+
- API version: 0.53.0
18+
- Build date: 2025-03-10T18:52:11.525050960Z[Etc/UTC]
1919

2020

2121

api-server/api/openapi.yaml

+1-1
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.52.0
9+
version: 0.53.0
1010
servers:
1111
- url: /ceramic
1212
paths:

api-server/src/lib.rs

+1-1
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.52.0";
24+
pub const API_VERSION: &str = "0.53.0";
2525

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

api/ceramic.yaml

+1-1
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.52.0
5+
version: 0.53.0
66
title: Ceramic API
77
#license:
88
# name: Apache 2.0

kubo-rpc-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ceramic-kubo-rpc-server"
3-
version = "0.52.0"
3+
version = "0.53.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

+2-2
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.52.0
18-
- Build date: 2025-02-24T18:07:20.918982326Z[Etc/UTC]
17+
- API version: 0.53.0
18+
- Build date: 2025-03-10T18:52:14.196569655Z[Etc/UTC]
1919

2020

2121

kubo-rpc-server/api/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ info:
66
name: MIT
77
url: https://mit-license.org/
88
title: Kubo RPC API
9-
version: 0.52.0
9+
version: 0.53.0
1010
servers:
1111
- url: /api/v0
1212
paths:

kubo-rpc-server/src/lib.rs

+1-1
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 = "/api/v0";
24-
pub const API_VERSION: &str = "0.52.0";
24+
pub const API_VERSION: &str = "0.53.0";
2525

2626
#[derive(Debug, PartialEq, Serialize, Deserialize)]
2727
#[must_use]

kubo-rpc/kubo-rpc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ info:
33
description: >
44
This is the Kubo RPC API for working with IPLD data on IPFS
55
This API only defines a small subset of the official API.
6-
version: 0.52.0
6+
version: 0.53.0
77
title: Kubo RPC API
88
license:
99
name: MIT

0 commit comments

Comments
 (0)