Skip to content

Commit

Permalink
chore: version v0.11.0 (#274)
Browse files Browse the repository at this point in the history
* chore: version v0.11.0

* fix: EOF return on README

---------

Co-authored-by: Github Automation <[email protected]>
Co-authored-by: Ben Wilson <[email protected]>
  • Loading branch information
3 people authored Feb 12, 2024
1 parent c615e2d commit 9a96ade
Show file tree
Hide file tree
Showing 14 changed files with 47 additions and 30 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,28 @@

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

## [0.11.0] - 2024-02-12

### Bug Fixes

- Store metrics under own registry (not recon) (#266)

### Features

- Enable recon by default (#270)
- Support new id/data event payload for event creation (POST /events) (#269)

## [0.10.1] - 2024-02-08

### Bug Fixes

- Allow double insert of key/value pairs in Recon (#264)
- Use try_from on recon keys (#263)
- Resume token should return previous (not 0) when nothing found (#265)

### Miscellaneous Tasks

- Version v0.10.1 (#267)

## [0.10.0] - 2024-02-06

Expand Down
34 changes: 17 additions & 17 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 @@ -192,7 +192,7 @@ xtaskops = "0.3"
zeroize = "1.4"

[workspace.package]
version = "0.10.1"
version = "0.11.0"
edition = "2021"
authors = [
"Danny Browning <[email protected]>",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ Re-run the migration to pick up any new block that were crated after the first m
## License

Fully open source and dual-licensed under MIT and Apache 2.

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.10.1"
version = "0.11.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.10.1
- Build date: 2024-02-09T13:10:42.872308-07:00[America/Denver]
- API version: 0.11.0
- Build date: 2024-02-12T14:25:37.570843794Z[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.10.1
version: 0.11.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.10.1";
pub const API_VERSION: &str = "0.11.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.10.1
version: 0.11.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.10.1"
version = "0.11.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.10.1
- Build date: 2024-02-08T16:59:28.529007665Z[Etc/UTC]
- API version: 0.11.0
- Build date: 2024-02-12T14:25:39.543445637Z[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.10.1
version: 0.11.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.10.1";
pub const API_VERSION: &str = "0.11.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.10.1
version: 0.11.0
title: Kubo RPC API
license:
name: MIT
Expand Down

0 comments on commit 9a96ade

Please sign in to comment.