Skip to content

Commit 86383a7

Browse files
smrz2001Github Automation
and
Github Automation
authored
chore: version v0.15.0 (#325)
Co-authored-by: Github Automation <[email protected]>
1 parent 278d583 commit 86383a7

File tree

13 files changed

+71
-41
lines changed

13 files changed

+71
-41
lines changed

CHANGELOG.md

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

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

5+
## [0.15.0] - 2024-04-29
6+
7+
### 🚀 Features
8+
9+
- Validate time events (#289)
10+
- Add workflow for custom images
11+
- Migrations with new table format to de-dup blocks and support out of order delivery (#292)
12+
- Don't mark peers failed when we error during sync (#300)
13+
- Jemalloc (#319)
14+
- Store bench (#303)
15+
- Disable mdns,bitswap,kad,relay,dcutr protocols (#323)
16+
17+
### 🐛 Bug Fixes
18+
19+
- Use TAG_LATEST (#294)
20+
- Set the js-ceramic image when scheduling k8 deploy (#298)
21+
- Gh workflow syntax
22+
- Cd-to-infra workflow quote fix (#314)
23+
- Tokio vs std thread is okay (#318)
24+
- Rust-jemalloc-pprof is only supported on linux (#321)
25+
26+
### ⚙️ Miscellaneous Tasks
27+
28+
- Remove mut from store traits (#305)
29+
- Adjust types to allow dynamic usage (#306)
30+
- Don't hang the executor (#307)
31+
- Recon libp2p e2e tests (#310)
32+
- Add debug image builds (#311)
33+
- Update debug tags when not releasing (#313)
34+
- Fix docker build for debug mode (#315)
35+
- Add a release build with debug symbols and tokio console (#316)
36+
- Update open telemetry and tokio-console dependencies (#322)
37+
- Refactor to to lay groundwork for postgres support (#320)
38+
- Add variants for error handling (#317)
39+
540
## [0.14.0] - 2024-03-26
641

742
### 🚀 Features
@@ -18,6 +53,10 @@ All notable changes to this project will be documented in this file.
1853

1954
- Added explicit deps to build steps (#291)
2055

56+
### ⚙️ Miscellaneous Tasks
57+
58+
- Version v0.14.0 (#297)
59+
2160
## [0.13.0] - 2024-03-19
2261

2362
### 🚀 Features

Cargo.lock

Lines changed: 19 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
@@ -201,7 +201,7 @@ zeroize = "1.4"
201201

202202

203203
[workspace.package]
204-
version = "0.14.0"
204+
version = "0.15.0"
205205
edition = "2021"
206206
authors = [
207207
"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.14.0"
3+
version = "0.15.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.14.0
18-
- Build date: 2024-04-24T13:37:37.597565436-06:00[America/Denver]
17+
- API version: 0.15.0
18+
- Build date: 2024-04-29T17:53:06.595190991Z[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.14.0
9+
version: 0.15.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
@@ -20,7 +20,7 @@ use swagger::{ApiError, ContextWrapper};
2020
type ServiceError = Box<dyn Error + Send + Sync + 'static>;
2121

2222
pub const BASE_PATH: &str = "/ceramic";
23-
pub const API_VERSION: &str = "0.14.0";
23+
pub const API_VERSION: &str = "0.15.0";
2424

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

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.14.0
5+
version: 0.15.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.14.0"
3+
version = "0.15.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.14.0
18-
- Build date: 2024-03-26T12:19:17.274907-06:00[America/Denver]
17+
- API version: 0.15.0
18+
- Build date: 2024-04-29T17:53:08.662597085Z[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.14.0
9+
version: 0.15.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
@@ -20,7 +20,7 @@ use swagger::{ApiError, ContextWrapper};
2020
type ServiceError = Box<dyn Error + Send + Sync + 'static>;
2121

2222
pub const BASE_PATH: &str = "/api/v0";
23-
pub const API_VERSION: &str = "0.14.0";
23+
pub const API_VERSION: &str = "0.15.0";
2424

2525
#[derive(Debug, PartialEq, Serialize, Deserialize)]
2626
#[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.14.0
6+
version: 0.15.0
77
title: Kubo RPC API
88
license:
99
name: MIT

0 commit comments

Comments
 (0)