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 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdata authored Nov 14, 2022
1 parent 26e34ac commit 4613c5f
Show file tree
Hide file tree
Showing 16 changed files with 148 additions and 32 deletions.
14 changes: 7 additions & 7 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"rust/noosphere-api": "0.2.0",
"rust/noosphere-cli": "0.2.1",
"rust/noosphere-api": "0.3.0",
"rust/noosphere-cli": "0.3.0",
"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-core": "0.2.0",
"rust/noosphere-into": "0.1.0",
"rust/noosphere-ns": "0.1.1",
"rust/noosphere-storage": "0.1.0",
"rust/noosphere-fs": "0.1.1-alpha.1",
"rust/noosphere": "0.1.0"
"rust/noosphere-fs": "0.1.0",
"rust/noosphere": "0.2.0"
}
14 changes: 7 additions & 7 deletions Cargo.lock

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

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

## [0.3.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.2.0...noosphere-api-v0.3.0) (2022-11-14)


### ⚠ BREAKING CHANGES

* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))


### Dependencies

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

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


Expand Down
4 changes: 2 additions & 2 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.2.0"
version = "0.3.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 @@ -25,7 +25,7 @@ url = "^2"
serde = "^1"
serde_urlencoded = "~0.7"
tracing = "~0.1"
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] }

Expand Down
20 changes: 20 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@
* dependencies
* noosphere-api bumped from 0.1.0 to 0.2.0

## [0.3.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.2.1...noosphere-cli-v0.3.0) (2022-11-14)


### ⚠ BREAKING CHANGES

* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.1.0 to 0.2.0
* noosphere-fs bumped from 0.1.1-alpha.1 to 0.1.0
* noosphere-api bumped from 0.2.0 to 0.3.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
8 changes: 4 additions & 4 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.1"
version = "0.3.0"
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 @@ -46,10 +46,10 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.14", features = [ "serde" ] }
globset = "~0.4"

noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.0", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.2.0", path = "../noosphere-api" }
noosphere-api = { version = "0.3.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
11 changes: 11 additions & 0 deletions rust/noosphere-core/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-core-v0.1.0...noosphere-core-v0.2.0) (2022-11-14)


### ⚠ BREAKING CHANGES

* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))

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


Expand Down
2 changes: 1 addition & 1 deletion 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.1.0"
version = "0.2.0"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down
21 changes: 21 additions & 0 deletions rust/noosphere-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* Some FFI interfaces now have simplified interfaces.
* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))
* Add `SphereFS` read/write to FFI ([#141](https://github.com/subconsciousnetwork/noosphere/issues/141)) ([26e34ac](https://github.com/subconsciousnetwork/noosphere/commit/26e34acfe70cac099acfa6dc8c2cf156c46fdae0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.1.0 to 0.2.0
4 changes: 2 additions & 2 deletions rust/noosphere-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-fs"
version = "0.1.1-alpha.1"
version = "0.1.0"
edition = "2021"
description = "A high-level, FS-like view over Noosphere content"
keywords = ["fs", "ipld", "noosphere", "p2p", "async"]
Expand All @@ -19,7 +19,7 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }

tokio = { version = "^1", features = ["sync", "io-util"] }
Expand Down
20 changes: 20 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.1.0 to 0.2.0
* noosphere-fs bumped from 0.1.1-alpha.1 to 0.1.0
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.1.1-alpha.1"
version = "0.1.0"
edition = "2021"
description = "Transformations of Noosphere content into various target formats"
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]
Expand All @@ -17,9 +17,9 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
noosphere-fs = { version = "0.1.0", path = "../noosphere-fs" }
subtext = { version = "~0.3", features = ["stream"] }

anyhow = "^1"
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-ns/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-core bumped from 0.1.0 to 0.2.0

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


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-ns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-ns"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "A P2P name system for Noosphere"
keywords = [
Expand Down Expand Up @@ -36,7 +36,7 @@ ucan-key-support = { version = "0.7.0-alpha.1" }
tokio = { version = "1.15", features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] }
libp2p = { version = "0.49.0", default-features = false, features = [ "identify", "dns", "tcp", "tokio", "noise", "mplex", "yamux", "kad" ] }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }

[dev-dependencies]
rand = { version = "0.8.5" }
Expand Down
22 changes: 22 additions & 0 deletions rust/noosphere/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* Some FFI interfaces now have simplified interfaces.
* Many APIs that previously asked for bare strings when a DID string was expected now expect a newtype called `Did` that wraps a string.

### Features

* `SphereFs` is initialized with key material ([#140](https://github.com/subconsciousnetwork/noosphere/issues/140)) ([af48061](https://github.com/subconsciousnetwork/noosphere/commit/af4806114ca8f7703e0a888c7f369a4a4ed69c00))
* Add `SphereFS` read/write to FFI ([#141](https://github.com/subconsciousnetwork/noosphere/issues/141)) ([26e34ac](https://github.com/subconsciousnetwork/noosphere/commit/26e34acfe70cac099acfa6dc8c2cf156c46fdae0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.1.0 to 0.2.0
* noosphere-fs bumped from 0.1.1-alpha.1 to 0.1.0
* noosphere-api bumped from 0.2.0 to 0.3.0

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


Expand Down
8 changes: 4 additions & 4 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.2.0"
edition = "2021"
description = "A high-level package for dealing with accessing the Noosphere"
keywords = ["noosphere"]
Expand Down Expand Up @@ -32,10 +32,10 @@ tracing = "~0.1"
url = "^2"
subtext = { version = "~0.3" }

noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
noosphere-core = { version = "0.2.0", path = "../noosphere-core" }
noosphere-fs = { version = "0.1.0", path = "../noosphere-fs" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.2.0", path = "../noosphere-api" }
noosphere-api = { version = "0.3.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 4613c5f

Please sign in to comment.