Skip to content

Commit

Permalink
chore: version v0.29.0 (#445)
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 Jul 22, 2024
1 parent bfe2380 commit cc73843
Show file tree
Hide file tree
Showing 13 changed files with 53 additions and 32 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,27 @@

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

## [0.28.1] - 2024-07-14
## [0.29.0] - 2024-07-22

### 🚀 Features

- Support cors via cli flag (#425)
- Workflow update deb repo (#437)
- Add option for external swarm addresses (#439)

### 🐛 Bug Fixes

- Add context to p2p key dir errors (#438)

### 📚 Documentation

- Adds UPGRADE.md docs (#402)

### ⚙️ Miscellaneous Tasks

- Add CODEOWNERS file (#443)

## [0.28.1] - 2024-07-15

### 🚀 Features

Expand All @@ -12,6 +32,7 @@ All notable changes to this project will be documented in this file.

- Release archive with linux binary (#422)
- Update selector for post-deployment tests (#435)
- Version v0.28.1 (#436)

## [0.28.0] - 2024-07-12

Expand Down
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
Expand Up @@ -207,7 +207,7 @@ zeroize = "1.4"


[workspace.package]
version = "0.28.1"
version = "0.29.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.28.1"
version = "0.29.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.28.1
- Build date: 2024-07-15T07:42:36.368308-07:00[America/Los_Angeles]
- API version: 0.29.0
- Build date: 2024-07-22T20:00:53.129668076Z[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.28.1
version: 0.29.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.28.1";
pub const API_VERSION: &str = "0.29.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.28.1
version: 0.29.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.28.1"
version = "0.29.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.28.1
- Build date: 2024-07-14T19:10:53.878563503Z[Etc/UTC]
- API version: 0.29.0
- Build date: 2024-07-22T20:00:55.293650347Z[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.28.1
version: 0.29.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.28.1";
pub const API_VERSION: &str = "0.29.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.28.1
version: 0.29.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit cc73843

Please sign in to comment.