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 (#121)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 3, 2022
1 parent ad9daa6 commit c063059
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 11 deletions.
7 changes: 4 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"rust/noosphere-api": "0.1.0-alpha.1",
"rust/noosphere-cli": "0.1.0",
"rust/noosphere-api": "0.1.0",
"rust/noosphere-cli": "0.1.1",
"rust/noosphere-collections": "0.1.0-alpha.1",
"rust/noosphere-core": "0.1.0-alpha.1",
"rust/noosphere-into": "0.1.0-alpha.1",
"rust/noosphere-ns": "0.1.0-alpha.1",
"rust/noosphere-storage": "0.1.0-alpha.1",
"rust/noosphere-fs": "0.1.0-alpha.1"
"rust/noosphere-fs": "0.1.0-alpha.1",
"rust/noosphere": "0.1.0-alpha.1"
}
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.

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

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


### Bug Fixes

* **api:** Use rustls instead of OpenSSL ([1a0625a](https://github.com/subconsciousnetwork/noosphere/commit/1a0625ad79330d35ca137361297318bdbf29137e))
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-alpha.1"
version = "0.1.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
@@ -1,5 +1,9 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0

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


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.1.0"
version = "0.1.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-alpha.1", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.0-alpha.1", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-api = { version = "0.1.0-alpha.1", path = "../noosphere-api" }
noosphere-api = { version = "0.1.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
15 changes: 15 additions & 0 deletions rust/noosphere/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## 0.1.0-alpha.1 (2022-11-03)


### Features

* **noosphere:** Introduce `noosphere` crate ([#123](https://github.com/subconsciousnetwork/noosphere/issues/123)) ([ad9daa6](https://github.com/subconsciousnetwork/noosphere/commit/ad9daa697067069197d12ee8e7f11bdbedc3662d))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0
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"
version = "0.1.0-alpha.1"
edition = "2021"
description = "A high-level package for dealing with accessing the Noosphere"
keywords = ["noosphere"]
Expand Down Expand Up @@ -31,7 +31,7 @@ lazy_static = "^1"
noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.0-alpha.1", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-api = { version = "0.1.0-alpha.1", path = "../noosphere-api" }
noosphere-api = { version = "0.1.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 c063059

Please sign in to comment.