Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
chore: release main (#136)
Browse files Browse the repository at this point in the history
Co-authored-by: Christopher Joel <240083+cdata@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and cdata authored Nov 9, 2022
1 parent c198812 commit c750aa4
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"rust/noosphere-api": "0.1.0",
"rust/noosphere-cli": "0.2.0",
"rust/noosphere-api": "0.2.0",
"rust/noosphere-cli": "0.2.1",
"rust/noosphere-collections": "0.1.1-alpha.1",
"rust/noosphere-core": "0.1.0",
"rust/noosphere-into": "0.1.1-alpha.1",
"rust/noosphere-ns": "0.1.0",
"rust/noosphere-storage": "0.1.0",
"rust/noosphere-fs": "0.1.1-alpha.1",
"rust/noosphere": "0.1.0-alpha.1"
"rust/noosphere": "0.1.0"
}
6 changes: 3 additions & 3 deletions Cargo.lock

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

11 changes: 11 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0...noosphere-api-v0.2.0) (2022-11-09)


### ⚠ BREAKING CHANGES

* The `noosphere-api` Client now holds an owned key instead of a reference.

### Features

* Add `noosphere` crate-based Swift package ([#131](https://github.com/subconsciousnetwork/noosphere/issues/131)) ([e1204c2](https://github.com/subconsciousnetwork/noosphere/commit/e1204c2a5822c3c0dbb7e61bbacffb2c1f49d8d8))

## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0...noosphere-api-v0.1.0) (2022-11-09)


Expand Down
2 changes: 1 addition & 1 deletion rust/noosphere-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-api"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Type information pertinent to the REST API of the gateway server that is a part of the Noosphere CLI"
keywords = ["rest", "api", "noosphere", "p2p"]
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* dependencies
* noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0

* The following workspace dependencies were updated
* dependencies
* noosphere-api bumped from 0.1.0 to 0.2.0

## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.1.1...noosphere-cli-v0.2.0) (2022-11-09)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-cli"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
Expand Down Expand Up @@ -49,7 +49,7 @@ globset = "~0.4"
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.1.0", path = "../noosphere-api" }
noosphere-api = { version = "0.2.0", path = "../noosphere-api" }
ucan = { version = "0.7.0-alpha.1" }
ucan-key-support = { version = "0.7.0-alpha.1" }
cid = "~0.8"
Expand Down
18 changes: 18 additions & 0 deletions rust/noosphere/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.1.0-alpha.1...noosphere-v0.1.0) (2022-11-09)


### ⚠ BREAKING CHANGES

* The `noosphere-api` Client now holds an owned key instead of a reference.

### Features

* Add `noosphere` crate-based Swift package ([#131](https://github.com/subconsciousnetwork/noosphere/issues/131)) ([e1204c2](https://github.com/subconsciousnetwork/noosphere/commit/e1204c2a5822c3c0dbb7e61bbacffb2c1f49d8d8))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-api bumped from 0.1.0 to 0.2.0

## [0.1.0-alpha.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.1.0-alpha.1...noosphere-v0.1.0-alpha.1) (2022-11-09)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere"
version = "0.1.0-alpha.1"
version = "0.1.0"
edition = "2021"
description = "A high-level package for dealing with accessing the Noosphere"
keywords = ["noosphere"]
Expand Down Expand Up @@ -34,7 +34,7 @@ url = "^2"
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.1.0", path = "../noosphere-api" }
noosphere-api = { version = "0.2.0", path = "../noosphere-api" }
ucan = { version = "0.7.0-alpha.1" }
ucan-key-support = { version = "0.7.0-alpha.1" }

Expand Down

0 comments on commit c750aa4

Please sign in to comment.