From 3a871c9400c558a6ee604a0d99c842525ddcd1ac Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 31 Jul 2022 09:54:52 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [@libp2p/interface-pubsub-v2.0.0](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/interface-pubsub-v1.0.4...@libp2p/interface-pubsub-v2.0.0) (2022-07-31) ### ⚠ BREAKING CHANGES * The `Message` type is now either a `SignedMessage` or a `UnsignedMessage` * the inbound/outbound stream types have changed ### Features * pubsub Message types for signature policies ([#266](https://github.com/libp2p/js-libp2p-interfaces/issues/266)) ([9eb710b](https://github.com/libp2p/js-libp2p-interfaces/commit/9eb710bcbdb0aef95c7a8613e00065a3b7c7f887)) ### Bug Fixes * make stream types Uint8ArrayLists ([#272](https://github.com/libp2p/js-libp2p-interfaces/issues/272)) ([ace7e0c](https://github.com/libp2p/js-libp2p-interfaces/commit/ace7e0cdb81dd241a8e96a44e841d38b2b80e031)) ### Trivial Changes * update project config ([#271](https://github.com/libp2p/js-libp2p-interfaces/issues/271)) ([59c0bf5](https://github.com/libp2p/js-libp2p-interfaces/commit/59c0bf5e0b05496fca2e4902632b61bb41fad9e9)) --- packages/interface-pubsub/CHANGELOG.md | 23 +++++++++++++++++++++++ packages/interface-pubsub/package.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/packages/interface-pubsub/CHANGELOG.md b/packages/interface-pubsub/CHANGELOG.md index e851657f5..558500092 100644 --- a/packages/interface-pubsub/CHANGELOG.md +++ b/packages/interface-pubsub/CHANGELOG.md @@ -1,3 +1,26 @@ +## [@libp2p/interface-pubsub-v2.0.0](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/interface-pubsub-v1.0.4...@libp2p/interface-pubsub-v2.0.0) (2022-07-31) + + +### ⚠ BREAKING CHANGES + +* The `Message` type is now either a `SignedMessage` +or a `UnsignedMessage` +* the inbound/outbound stream types have changed + +### Features + +* pubsub Message types for signature policies ([#266](https://github.com/libp2p/js-libp2p-interfaces/issues/266)) ([9eb710b](https://github.com/libp2p/js-libp2p-interfaces/commit/9eb710bcbdb0aef95c7a8613e00065a3b7c7f887)) + + +### Bug Fixes + +* make stream types Uint8ArrayLists ([#272](https://github.com/libp2p/js-libp2p-interfaces/issues/272)) ([ace7e0c](https://github.com/libp2p/js-libp2p-interfaces/commit/ace7e0cdb81dd241a8e96a44e841d38b2b80e031)) + + +### Trivial Changes + +* update project config ([#271](https://github.com/libp2p/js-libp2p-interfaces/issues/271)) ([59c0bf5](https://github.com/libp2p/js-libp2p-interfaces/commit/59c0bf5e0b05496fca2e4902632b61bb41fad9e9)) + ## [@libp2p/interface-pubsub-v1.0.4](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/interface-pubsub-v1.0.3...@libp2p/interface-pubsub-v1.0.4) (2022-06-27) diff --git a/packages/interface-pubsub/package.json b/packages/interface-pubsub/package.json index 6bdd5d49d..96e2e48ee 100644 --- a/packages/interface-pubsub/package.json +++ b/packages/interface-pubsub/package.json @@ -1,6 +1,6 @@ { "name": "@libp2p/interface-pubsub", - "version": "1.0.4", + "version": "2.0.0", "description": "PubSub interface for libp2p", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/interface-pubsub#readme",