Skip to content

Commit

Permalink
chore: version v0.26.0 (#416)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Automation <[email protected]>
smrz2001 and Github Automation authored Jul 2, 2024
1 parent 8fae376 commit 9a88917
Showing 13 changed files with 55 additions and 31 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,29 @@

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

## [0.26.0] - 2024-07-02

### 🐛 Bug Fixes

- IOD long streams could remain undelivered (#387)
- Address edge cases in from-ipfs time events (#395)
- Make sure the store directory exists and create it if needed (#401)
- Default missing sep to model (#404)
- Update correctness test selector (#406)
- Use event service rather than store to enforce deliverability/or… (#403)
- Homebrew support (#412)
- Update homebrew workflow (#413)
- Use pat for homebrew workflow (#415)

### 🚜 Refactor

- Use an Iterator for insert_many and other clean up (#399)

### ⚙️ Miscellaneous Tasks

- Mzk/readme installation (#397)
- Homebrew support (#407)

## [0.25.0] - 2024-06-24

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

- Replace tracing_test with test-log and don't init tracing manually (#391)
- Rename prometheus registry and metrics for better consistency (#373)
- Version v0.25.0 (#396)

## [0.24.0] - 2024-06-18

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


[workspace.package]
version = "0.25.0"
version = "0.26.0"
edition = "2021"
authors = [
"Danny Browning <[email protected]>",
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.25.0"
version = "0.26.0"
authors = ["OpenAPI Generator team and contributors"]
description = "This is the Ceramic API for working with streams and events "
license = "MIT"
4 changes: 2 additions & 2 deletions api-server/README.md
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@ To see how to make this your own, look here:

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

- API version: 0.25.0
- Build date: 2024-06-24T14:29:49.667963416Z[Etc/UTC]
- API version: 0.26.0
- Build date: 2024-07-02T00:57:09.660070591Z[Etc/UTC]



2 changes: 1 addition & 1 deletion api-server/api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Ceramic API
version: 0.25.0
version: 0.26.0
servers:
- url: /ceramic
paths:
2 changes: 1 addition & 1 deletion api-server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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.25.0";
pub const API_VERSION: &str = "0.26.0";

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

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

- API version: 0.25.0
- Build date: 2024-06-24T14:29:51.796659348Z[Etc/UTC]
- API version: 0.26.0
- Build date: 2024-07-02T00:57:11.775092055Z[Etc/UTC]



2 changes: 1 addition & 1 deletion kubo-rpc-server/api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ info:
name: MIT
url: https://mit-license.org/
title: Kubo RPC API
version: 0.25.0
version: 0.26.0
servers:
- url: /api/v0
paths:
2 changes: 1 addition & 1 deletion kubo-rpc-server/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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.25.0";
pub const API_VERSION: &str = "0.26.0";

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

0 comments on commit 9a88917

Please sign in to comment.