Skip to content

Commit 80ce828

Browse files
smrz2001Github Automation
and
Github Automation
authored
chore: version v0.35.0 (#517)
Co-authored-by: Github Automation <[email protected]>
1 parent 243307d commit 80ce828

File tree

13 files changed

+63
-37
lines changed

13 files changed

+63
-37
lines changed

CHANGELOG.md

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

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

5+
## [0.35.0] - 2024-09-09
6+
7+
### 🚀 Features
8+
9+
- Aes 287 create conclusion event type (#499)
10+
- Trait for generating cbor bytes and cids (#477)
11+
- Groundwork for event validation and some clean up (#505)
12+
- Anchor service (part 2) (#476)
13+
- Remote anchor transaction manager (part 3) (#478)
14+
15+
### 🐛 Bug Fixes
16+
17+
- Updates detection of tile docs and doesn't log them by default (#514)
18+
- Start up ordering task bug (#516)
19+
20+
### 🚜 Refactor
21+
22+
- Remove recon client/server and send empty ranges when we don't need anything (#509)
23+
- Create explicit event and interest services with separate stores. (#513)
24+
- Simplify daemon logic (#515)
25+
26+
### ⚙️ Miscellaneous Tasks
27+
28+
- Update console-subscriber package version (#507)
29+
530
## [0.34.0] - 2024-08-26
631

732
### 🚀 Features
@@ -18,6 +43,7 @@ All notable changes to this project will be documented in this file.
1843

1944
- Add logic to dispatch validation based on event type (#493)
2045
- Modify cacao, unvalidated module, jwk to add functionality needed for event validation (#492)
46+
- Version v0.34.0 (#506)
2147

2248
## [0.33.0] - 2024-08-19
2349

Cargo.lock

Lines changed: 24 additions & 24 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
@@ -226,7 +226,7 @@ zeroize = "1.4"
226226

227227

228228
[workspace.package]
229-
version = "0.34.0"
229+
version = "0.35.0"
230230
edition = "2021"
231231
authors = [
232232
"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.34.0"
3+
version = "0.35.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.34.0
18-
- Build date: 2024-08-26T21:42:47.754879189Z[Etc/UTC]
17+
- API version: 0.35.0
18+
- Build date: 2024-09-09T16:04:11.911682803Z[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.34.0
9+
version: 0.35.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.34.0";
24+
pub const API_VERSION: &str = "0.35.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.34.0
5+
version: 0.35.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.34.0"
3+
version = "0.35.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.34.0
18-
- Build date: 2024-08-26T21:42:49.846750291Z[Etc/UTC]
17+
- API version: 0.35.0
18+
- Build date: 2024-09-09T16:04:14.489447244Z[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.34.0
9+
version: 0.35.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.34.0";
24+
pub const API_VERSION: &str = "0.35.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.34.0
6+
version: 0.35.0
77
title: Kubo RPC API
88
license:
99
name: MIT

0 commit comments

Comments
 (0)