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 (#236)
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 Mar 14, 2023
1 parent d43c628 commit 4a5c47a
Show file tree
Hide file tree
Showing 24 changed files with 336 additions and 61 deletions.
20 changes: 11 additions & 9 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"rust/noosphere-api": "0.5.6",
"rust/noosphere-cli": "0.6.6",
"rust/noosphere-collections": "0.3.2",
"rust/noosphere-core": "0.6.3",
"rust/noosphere-into": "0.4.5",
"rust/noosphere-ns": "0.4.3",
"rust/noosphere-storage": "0.4.2",
"rust/noosphere": "0.6.3",
"rust/noosphere-ipfs": "0.1.2"
"rust/noosphere-api": "0.6.0",
"rust/noosphere-cli": "0.7.0",
"rust/noosphere-collections": "0.3.3",
"rust/noosphere-core": "0.7.0",
"rust/noosphere-into": "0.5.0",
"rust/noosphere-ns": "0.5.0",
"rust/noosphere-storage": "0.5.0",
"rust/noosphere": "0.7.0",
"rust/noosphere-ipfs": "0.2.0",
"rust/noosphere-gateway": "0.1.0",
"rust/noosphere-sphere": "0.1.0"
}
18 changes: 9 additions & 9 deletions Cargo.lock

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

19 changes: 19 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,25 @@
* noosphere-core bumped from 0.6.2 to 0.6.3
* noosphere-storage bumped from 0.4.1 to 0.4.2

## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.5.6...noosphere-api-v0.6.0) (2023-03-14)


### ⚠ BREAKING CHANGES

* Petname resolution and synchronization in spheres and gateways (#253)

### Features

* Petname resolution and synchronization in spheres and gateways ([#253](https://github.com/subconsciousnetwork/noosphere/issues/253)) ([f7ddfa7](https://github.com/subconsciousnetwork/noosphere/commit/f7ddfa7b65129efe795c6e3fca58cdc22799127a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.7.0
* noosphere-storage bumped from 0.4.2 to 0.5.0

## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.4.0...noosphere-api-v0.5.0) (2022-11-30)


Expand Down
6 changes: 3 additions & 3 deletions 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.5.6"
version = "0.6.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 All @@ -26,8 +26,8 @@ url = "^2"
serde = "^1"
serde_urlencoded = "~0.7"
tracing = "~0.1"
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.7.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] }

ucan = { version = "0.1.0" }
Expand Down
30 changes: 30 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,36 @@
* noosphere-api bumped from 0.5.5 to 0.5.6
* noosphere bumped from 0.6.2 to 0.6.3

## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.6.6...noosphere-cli-v0.7.0) (2023-03-14)


### ⚠ BREAKING CHANGES

* Petname resolution and synchronization in spheres and gateways (#253)

### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))
* Petname resolution and synchronization in spheres and gateways ([#253](https://github.com/subconsciousnetwork/noosphere/issues/253)) ([f7ddfa7](https://github.com/subconsciousnetwork/noosphere/commit/f7ddfa7b65129efe795c6e3fca58cdc22799127a))


### Bug Fixes

* Limit delegated UCAN's lifetime to authorization token's lifetime where appropriate. ([#249](https://github.com/subconsciousnetwork/noosphere/issues/249)) ([b62fb88](https://github.com/subconsciousnetwork/noosphere/commit/b62fb888e16718cb84f33aa93c14385ddef4d8d1))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.1.2 to 0.2.0
* noosphere-core bumped from 0.6.3 to 0.7.0
* noosphere-storage bumped from 0.4.2 to 0.5.0
* noosphere-api bumped from 0.5.6 to 0.6.0
* noosphere bumped from 0.6.3 to 0.7.0
* dev-dependencies
* noosphere-ns bumped from 0.4.3 to 0.5.0

## [0.6.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.6.1...noosphere-cli-v0.6.2) (2023-01-31)


Expand Down
14 changes: 7 additions & 7 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.6.6"
version = "0.7.0"
edition = "2021"
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
Expand All @@ -20,7 +20,7 @@ readme = "README.md"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] }
noosphere-ns = { version = "0.4.3", path = "../noosphere-ns" }
noosphere-ns = { version = "0.5.0", path = "../noosphere-ns" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tempfile = "^3"
Expand Down Expand Up @@ -49,13 +49,13 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-ipfs = { version = "0.1.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-ipfs = { version = "0.2.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.7.0", path = "../noosphere-core" }
noosphere-sphere = { version = "0.1.0", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-api = { version = "0.5.6", path = "../noosphere-api" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.6.0", path = "../noosphere-api" }
noosphere-gateway = { version = "0.1.0", path = "../noosphere-gateway" }
noosphere = { version = "0.6.3", path = "../noosphere" }
noosphere = { version = "0.7.0", path = "../noosphere" }
ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
cid = "~0.9"
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* dependencies
* noosphere-storage bumped from 0.4.0 to 0.4.1

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.4.2 to 0.5.0

## [0.3.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.3.1...noosphere-collections-v0.3.2) (2023-02-16)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-collections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-collections"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
description = "Collection data types that are needed by an efficient implementation of Noosphere's IPLD data structures"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -31,7 +31,7 @@ async-once-cell = "0.3"
async-recursion = "^1"
libipld-core = "~0.15"
libipld-cbor = "~0.15"
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }

tokio = { version = "^1", features = ["sync", "io-util"] }
# tokio-util = { version = "~0.7", features = ["io"] }
Expand Down
25 changes: 25 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.6.3...noosphere-core-v0.7.0) (2023-03-14)


### ⚠ BREAKING CHANGES

* Petname resolution and synchronization in spheres and gateways (#253)

### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))
* Petname resolution and synchronization in spheres and gateways ([#253](https://github.com/subconsciousnetwork/noosphere/issues/253)) ([f7ddfa7](https://github.com/subconsciousnetwork/noosphere/commit/f7ddfa7b65129efe795c6e3fca58cdc22799127a))


### Bug Fixes

* Limit delegated UCAN's lifetime to authorization token's lifetime where appropriate. ([#249](https://github.com/subconsciousnetwork/noosphere/issues/249)) ([b62fb88](https://github.com/subconsciousnetwork/noosphere/commit/b62fb888e16718cb84f33aa93c14385ddef4d8d1))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.4.2 to 0.5.0
* noosphere-collections bumped from 0.3.2 to 0.3.3

## [0.6.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.6.1...noosphere-core-v0.6.2) (2023-02-07)


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-core"
version = "0.6.3"
version = "0.7.0"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -46,8 +46,8 @@ tokio-stream = "~0.1"
libipld-core = "~0.15"
libipld-cbor = "~0.15"

noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-collections = { version = "0.3.2", path = "../noosphere-collections" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.3.3", path = "../noosphere-collections" }

ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
Expand Down
25 changes: 25 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## 0.1.0 (2023-03-14)


### ⚠ BREAKING CHANGES

* Petname resolution and synchronization in spheres and gateways (#253)

### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))
* Petname resolution and synchronization in spheres and gateways ([#253](https://github.com/subconsciousnetwork/noosphere/issues/253)) ([f7ddfa7](https://github.com/subconsciousnetwork/noosphere/commit/f7ddfa7b65129efe795c6e3fca58cdc22799127a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.1.2 to 0.2.0
* noosphere-core bumped from 0.6.3 to 0.7.0
* noosphere-ns bumped from 0.4.3 to 0.5.0
* noosphere-storage bumped from 0.4.2 to 0.5.0
* noosphere-api bumped from 0.5.6 to 0.6.0
* noosphere bumped from 0.6.3 to 0.7.0
12 changes: 6 additions & 6 deletions rust/noosphere-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-ipfs = { version = "0.1.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-ns = { version = "0.4.3", path = "../noosphere-ns" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-ipfs = { version = "0.2.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.7.0", path = "../noosphere-core" }
noosphere-ns = { version = "0.5.0", path = "../noosphere-ns" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.1.0", path = "../noosphere-sphere" }
noosphere-api = { version = "0.5.6", path = "../noosphere-api" }
noosphere = { version = "0.6.3", path = "../noosphere" }
noosphere-api = { version = "0.6.0", path = "../noosphere-api" }
noosphere = { version = "0.7.0", path = "../noosphere" }
ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
cid = "~0.9"
Expand Down
20 changes: 20 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,26 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-fs bumped from 0.5.2 to 0.5.3

## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.4.5...noosphere-into-v0.5.0) (2023-03-14)


### ⚠ BREAKING CHANGES

* Petname resolution and synchronization in spheres and gateways (#253)

### Features

* Noosphere builds and runs tests on Windows ([#228](https://github.com/subconsciousnetwork/noosphere/issues/228)) ([d1320f0](https://github.com/subconsciousnetwork/noosphere/commit/d1320f08429c8f8090fd4612b56ebf9386414cc7))
* Petname resolution and synchronization in spheres and gateways ([#253](https://github.com/subconsciousnetwork/noosphere/issues/253)) ([f7ddfa7](https://github.com/subconsciousnetwork/noosphere/commit/f7ddfa7b65129efe795c6e3fca58cdc22799127a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.7.0
* noosphere-storage bumped from 0.4.2 to 0.5.0

## [0.4.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.3.0...noosphere-into-v0.4.0) (2022-12-14)


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere-into/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-into"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
description = "Transformations of Noosphere content into various target formats"
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]
Expand All @@ -17,8 +17,8 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.7.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.5.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.1.0", path = "../noosphere-sphere" }
# noosphere-fs = { version = "0.5.3", path = "../noosphere-fs" }
subtext = { version = "0.3.2", features = ["stream"] }
Expand Down
Loading

0 comments on commit 4a5c47a

Please sign in to comment.