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 (#125)
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 9, 2022
1 parent e1204c2 commit 3911c21
Show file tree
Hide file tree
Showing 17 changed files with 154 additions and 39 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.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-cli": "0.2.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-storage": "0.1.0",
"rust/noosphere-fs": "0.1.1-alpha.1",
"rust/noosphere": "0.1.0-alpha.1"
}
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.

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

## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0...noosphere-api-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-core bumped from 0.1.0-alpha.1 to 0.1.0
* noosphere-storage bumped from 0.1.0-alpha.1 to 0.1.0

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


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ url = "^2"
serde = "^1"
serde_urlencoded = "~0.7"
tracing = "~0.1"
noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] }

ucan = { version = "0.7.0-alpha.1" }
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 @@ -4,6 +4,26 @@
* dependencies
* noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0

## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.1.1...noosphere-cli-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))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.1.0-alpha.1 to 0.1.0
* noosphere-fs bumped from 0.1.0-alpha.1 to 0.1.1-alpha.1
* noosphere-storage 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
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.1.1"
version = "0.2.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,9 +46,9 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.14", features = [ "serde" ] }
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-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" }
ucan = { version = "0.7.0-alpha.1" }
ucan-key-support = { version = "0.7.0-alpha.1" }
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.1.0-alpha.1"
version = "0.1.1-alpha.1"
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.14"
libipld-cbor = "~0.14"
noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }

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

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


### ⚠ BREAKING CHANGES

* The `noosphere-api` Client now holds an owned key instead of a reference.
* initial work on NameSystem, wrapping the underlying DHT network. (#122)

### Features

* Add `noosphere` crate-based Swift package ([#131](https://github.com/subconsciousnetwork/noosphere/issues/131)) ([e1204c2](https://github.com/subconsciousnetwork/noosphere/commit/e1204c2a5822c3c0dbb7e61bbacffb2c1f49d8d8))
* initial work on NameSystem, wrapping the underlying DHT network. ([#122](https://github.com/subconsciousnetwork/noosphere/issues/122)) ([656fb23](https://github.com/subconsciousnetwork/noosphere/commit/656fb23a5ce5a75b7f1de59444c1d866a9308d83))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.1.0-alpha.1 to 0.1.0
* noosphere-collections bumped from 0.1.0-alpha.1 to 0.1.1-alpha.1
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.1.0-alpha.1"
version = "0.1.0"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -44,8 +44,8 @@ tokio-stream = "~0.1"
libipld-core = "~0.14"
libipld-cbor = "~0.14"

noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-collections = { version = "0.1.0-alpha.1", path = "../noosphere-collections" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.1.1-alpha.1", path = "../noosphere-collections" }

ucan = { version = "0.7.0-alpha.1" }
ucan-key-support = { version = "0.7.0-alpha.1" }
Expand Down
6 changes: 3 additions & 3 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.0-alpha.1"
version = "0.1.1-alpha.1"
edition = "2021"
description = "A high-level, FS-like view over Noosphere content"
keywords = ["fs", "ipld", "noosphere", "p2p", "async"]
Expand All @@ -19,8 +19,8 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

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

tokio = { version = "^1", features = ["sync", "io-util"] }
tokio-util = { version = "~0.7", features = ["io"] }
Expand Down
8 changes: 4 additions & 4 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.0-alpha.1"
version = "0.1.1-alpha.1"
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-alpha.1", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" }
noosphere-fs = { version = "0.1.0-alpha.1", path = "../noosphere-fs" }
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" }
subtext = { version = "~0.3", features = ["stream"] }

anyhow = "^1"
Expand Down
22 changes: 22 additions & 0 deletions rust/noosphere-ns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* initial work on NameSystem, wrapping the underlying DHT network. (#122)

### Features

* Expose replication/publication/ttl intervals to NameSystemBuilder ([#130](https://github.com/subconsciousnetwork/noosphere/issues/130)) ([e20680e](https://github.com/subconsciousnetwork/noosphere/commit/e20680e225d53d8c658a9c6c2ba5dcb80d2a314e))
* Implement a RecordValidator trait for the NameSystem DHT ([#129](https://github.com/subconsciousnetwork/noosphere/issues/129)) ([ba5560c](https://github.com/subconsciousnetwork/noosphere/commit/ba5560c031f2251a984eeaa0e0a7c95ad63e3c70))
* initial work on NameSystem, wrapping the underlying DHT network. ([#122](https://github.com/subconsciousnetwork/noosphere/issues/122)) ([656fb23](https://github.com/subconsciousnetwork/noosphere/commit/656fb23a5ce5a75b7f1de59444c1d866a9308d83))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.1.0-alpha.1 to 0.1.0
* noosphere-core bumped from 0.1.0-alpha.1 to 0.1.0
6 changes: 3 additions & 3 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-alpha.1"
version = "0.1.0"
edition = "2021"
description = "A P2P name system for Noosphere"
keywords = [
Expand Down Expand Up @@ -35,8 +35,8 @@ ucan = { version = "0.7.0-alpha.1" }
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-alpha.1", path = "../noosphere-storage" }
noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" }
noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" }
noosphere-core = { version = "0.1.0", path = "../noosphere-core" }

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

## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.1.0-alpha.1...noosphere-storage-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))
2 changes: 1 addition & 1 deletion rust/noosphere-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-storage"
version = "0.1.0-alpha.1"
version = "0.1.0"
edition = "2021"
description = "Pluggable backing storage for the Rust Noosphere implementation"
keywords = ["storage", "noosphere", "sled", "ipld", "indexeddb"]
Expand Down
20 changes: 20 additions & 0 deletions rust/noosphere/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [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)


### ⚠ 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-core bumped from 0.1.0-alpha.1 to 0.1.0
* noosphere-fs bumped from 0.1.0-alpha.1 to 0.1.1-alpha.1
* noosphere-storage bumped from 0.1.0-alpha.1 to 0.1.0

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


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ async-trait = "~0.1"
tracing = "~0.1"
url = "^2"

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-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" }
ucan = { version = "0.7.0-alpha.1" }
ucan-key-support = { version = "0.7.0-alpha.1" }
Expand Down

0 comments on commit 3911c21

Please sign in to comment.