Skip to content

Commit 68ab303

Browse files
smrz2001Github Automation
and
Github Automation
authored
chore: version v0.32.0 (#472)
Co-authored-by: Github Automation <[email protected]>
1 parent 6ce0aba commit 68ab303

File tree

13 files changed

+39
-31
lines changed

13 files changed

+39
-31
lines changed

CHANGELOG.md

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

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

5+
## [0.32.0] - 2024-08-07
6+
7+
### 🚀 Features
8+
9+
- Feature and experimental feature flags (#448)
10+
- Change default dir back to shared home location (#471)
11+
512
## [0.31.0] - 2024-08-02
613

714
### 🚀 Features
@@ -19,6 +26,7 @@ All notable changes to this project will be documented in this file.
1926
### ⚙️ Miscellaneous Tasks
2027

2128
- Rust 1.80 lints (#450)
29+
- Version v0.31.0 (#464)
2230

2331
## [0.30.0] - 2024-07-29
2432

Cargo.lock

Lines changed: 18 additions & 18 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
@@ -207,7 +207,7 @@ zeroize = "1.4"
207207

208208

209209
[workspace.package]
210-
version = "0.31.0"
210+
version = "0.32.0"
211211
edition = "2021"
212212
authors = [
213213
"Danny Browning <[email protected]>",

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.31.0"
3+
version = "0.32.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.31.0
18-
- Build date: 2024-08-02T16:40:57.142146936Z[Etc/UTC]
17+
- API version: 0.32.0
18+
- Build date: 2024-08-07T20:35:31.356834865Z[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.31.0
9+
version: 0.32.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.31.0";
24+
pub const API_VERSION: &str = "0.32.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.31.0
5+
version: 0.32.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.31.0"
3+
version = "0.32.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.31.0
18-
- Build date: 2024-08-02T16:40:59.354712600Z[Etc/UTC]
17+
- API version: 0.32.0
18+
- Build date: 2024-08-07T20:35:33.549219336Z[Etc/UTC]
1919

2020

2121

kubo-rpc-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: Kubo RPC API
9-
version: 0.31.0
9+
version: 0.32.0
1010
servers:
1111
- url: /api/v0
1212
paths:

kubo-rpc-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 = "/api/v0";
24-
pub const API_VERSION: &str = "0.31.0";
24+
pub const API_VERSION: &str = "0.32.0";
2525

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

kubo-rpc/kubo-rpc.yaml

Lines changed: 1 addition & 1 deletion
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.31.0
6+
version: 0.32.0
77
title: Kubo RPC API
88
license:
99
name: MIT

0 commit comments

Comments
 (0)