Skip to content

Commit

Permalink
chore: version v0.15.0 (#325)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Automation <[email protected]>
  • Loading branch information
smrz2001 and Github Automation authored Apr 29, 2024
1 parent 278d583 commit 86383a7
Show file tree
Hide file tree
Showing 13 changed files with 71 additions and 41 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,41 @@

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

## [0.15.0] - 2024-04-29

### 🚀 Features

- Validate time events (#289)
- Add workflow for custom images
- Migrations with new table format to de-dup blocks and support out of order delivery (#292)
- Don't mark peers failed when we error during sync (#300)
- Jemalloc (#319)
- Store bench (#303)
- Disable mdns,bitswap,kad,relay,dcutr protocols (#323)

### 🐛 Bug Fixes

- Use TAG_LATEST (#294)
- Set the js-ceramic image when scheduling k8 deploy (#298)
- Gh workflow syntax
- Cd-to-infra workflow quote fix (#314)
- Tokio vs std thread is okay (#318)
- Rust-jemalloc-pprof is only supported on linux (#321)

### ⚙️ Miscellaneous Tasks

- Remove mut from store traits (#305)
- Adjust types to allow dynamic usage (#306)
- Don't hang the executor (#307)
- Recon libp2p e2e tests (#310)
- Add debug image builds (#311)
- Update debug tags when not releasing (#313)
- Fix docker build for debug mode (#315)
- Add a release build with debug symbols and tokio console (#316)
- Update open telemetry and tokio-console dependencies (#322)
- Refactor to to lay groundwork for postgres support (#320)
- Add variants for error handling (#317)

## [0.14.0] - 2024-03-26

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

- Added explicit deps to build steps (#291)

### ⚙️ Miscellaneous Tasks

- Version v0.14.0 (#297)

## [0.13.0] - 2024-03-19

### 🚀 Features
Expand Down
47 changes: 19 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.14.0"
version = "0.15.0"
edition = "2021"
authors = [
"Danny Browning <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion api-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ceramic-api-server"
version = "0.14.0"
version = "0.15.0"
authors = ["OpenAPI Generator team and contributors"]
description = "This is the Ceramic API for working with streams and events "
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions api-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To see how to make this your own, look here:

[README]((https://openapi-generator.tech))

- API version: 0.14.0
- Build date: 2024-04-24T13:37:37.597565436-06:00[America/Denver]
- API version: 0.15.0
- Build date: 2024-04-29T17:53:06.595190991Z[Etc/UTC]



Expand Down
2 changes: 1 addition & 1 deletion api-server/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Ceramic API
version: 0.14.0
version: 0.15.0
servers:
- url: /ceramic
paths:
Expand Down
2 changes: 1 addition & 1 deletion api-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use swagger::{ApiError, ContextWrapper};
type ServiceError = Box<dyn Error + Send + Sync + 'static>;

pub const BASE_PATH: &str = "/ceramic";
pub const API_VERSION: &str = "0.14.0";
pub const API_VERSION: &str = "0.15.0";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[must_use]
Expand Down
2 changes: 1 addition & 1 deletion api/ceramic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0
info:
description: >
This is the Ceramic API for working with streams and events
version: 0.14.0
version: 0.15.0
title: Ceramic API
#license:
# name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ceramic-kubo-rpc-server"
version = "0.14.0"
version = "0.15.0"
authors = ["OpenAPI Generator team and contributors"]
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. "
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions kubo-rpc-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To see how to make this your own, look here:

[README]((https://openapi-generator.tech))

- API version: 0.14.0
- Build date: 2024-03-26T12:19:17.274907-06:00[America/Denver]
- API version: 0.15.0
- Build date: 2024-04-29T17:53:08.662597085Z[Etc/UTC]



Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Kubo RPC API
version: 0.14.0
version: 0.15.0
servers:
- url: /api/v0
paths:
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use swagger::{ApiError, ContextWrapper};
type ServiceError = Box<dyn Error + Send + Sync + 'static>;

pub const BASE_PATH: &str = "/api/v0";
pub const API_VERSION: &str = "0.14.0";
pub const API_VERSION: &str = "0.15.0";

#[derive(Debug, PartialEq, Serialize, Deserialize)]
#[must_use]
Expand Down
2 changes: 1 addition & 1 deletion kubo-rpc/kubo-rpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
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.
version: 0.14.0
version: 0.15.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit 86383a7

Please sign in to comment.