From 942c97b1e72b2b2c2fcedcad7ba8e1181488f493 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Apr 2023 06:05:51 +0000 Subject: [PATCH] chore: release main --- .github/release-please-manifest.json | 14 +++++++------- packages/client/CHANGELOG.md | 20 ++++++++++++++++++++ packages/client/package.json | 2 +- packages/core/CHANGELOG.md | 23 +++++++++++++++++++++++ packages/core/package.json | 2 +- packages/interface/CHANGELOG.md | 21 +++++++++++++++++++++ packages/interface/package.json | 2 +- packages/principal/CHANGELOG.md | 12 ++++++++++++ packages/principal/package.json | 2 +- packages/server/CHANGELOG.md | 20 ++++++++++++++++++++ packages/server/package.json | 2 +- packages/transport/CHANGELOG.md | 21 +++++++++++++++++++++ packages/transport/package.json | 2 +- packages/validator/CHANGELOG.md | 20 ++++++++++++++++++++ packages/validator/package.json | 2 +- 15 files changed, 151 insertions(+), 14 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index be9bd9be..d852b08d 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,9 +1,9 @@ { - "packages/client": "5.1.0", - "packages/core": "5.2.0", - "packages/interface": "6.2.0", - "packages/principal": "5.1.0", - "packages/server": "6.1.0", - "packages/transport": "5.1.1", - "packages/validator": "6.1.0" + "packages/client": "0.7.0", + "packages/core": "0.7.0", + "packages/interface": "0.7.0", + "packages/principal": "0.7.0", + "packages/server": "0.7.0", + "packages/transport": "0.7.0", + "packages/validator": "0.7.0" } diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index fadac53e..2fbed3ef 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/client-v5.1.0...client-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) ([25abb67](https://github.com/web3-storage/ucanto/commit/25abb679a05b1f4010cdb949c71537ca2611d9c7)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [5.1.0](https://github.com/web3-storage/ucanto/compare/client-v5.0.0...client-v5.1.0) (2023-03-07) diff --git a/packages/client/package.json b/packages/client/package.json index 7f0f5f0f..8771dd46 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/client", "description": "UCAN RPC Client", - "version": "5.1.0", + "version": "0.7.0", "keywords": [ "UCAN", "RPC", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 00ac8f56..6adaae2b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/core-v5.2.0...core-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) +* migrate schema to core ([#273](https://github.com/web3-storage/ucanto/issues/273)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* align implementation with receipt 0.2 spec ([#271](https://github.com/web3-storage/ucanto/issues/271)) ([aeea7e3](https://github.com/web3-storage/ucanto/commit/aeea7e3c7494143dce535792b0d53520e559c45a)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* migrate schema to core ([#273](https://github.com/web3-storage/ucanto/issues/273)) ([ce95504](https://github.com/web3-storage/ucanto/commit/ce95504a0e7cf7caf49418016dbb924b4cbc2e82)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) ([25abb67](https://github.com/web3-storage/ucanto/commit/25abb679a05b1f4010cdb949c71537ca2611d9c7)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [5.2.0](https://github.com/web3-storage/ucanto/compare/core-v5.1.0...core-v5.2.0) (2023-03-14) diff --git a/packages/core/package.json b/packages/core/package.json index f4fad49f..a9e5ebe8 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/core", "description": "ucanto core", - "version": "5.2.0", + "version": "0.7.0", "keywords": [ "UCAN", "RPC", diff --git a/packages/interface/CHANGELOG.md b/packages/interface/CHANGELOG.md index 49f48fa7..af2de666 100644 --- a/packages/interface/CHANGELOG.md +++ b/packages/interface/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/interface-v6.2.0...interface-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* align implementation with receipt 0.2 spec ([#271](https://github.com/web3-storage/ucanto/issues/271)) ([aeea7e3](https://github.com/web3-storage/ucanto/commit/aeea7e3c7494143dce535792b0d53520e559c45a)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) ([25abb67](https://github.com/web3-storage/ucanto/commit/25abb679a05b1f4010cdb949c71537ca2611d9c7)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [6.2.0](https://github.com/web3-storage/ucanto/compare/interface-v6.1.0...interface-v6.2.0) (2023-03-14) diff --git a/packages/interface/package.json b/packages/interface/package.json index fee0788f..d8588cd5 100644 --- a/packages/interface/package.json +++ b/packages/interface/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/interface", "description": "interface definitions for ucanto", - "version": "6.2.0", + "version": "0.7.0", "types": "./dist/src/lib.d.ts", "main": "./src/lib.js", "keywords": [ diff --git a/packages/principal/CHANGELOG.md b/packages/principal/CHANGELOG.md index c745c98f..ebfefebc 100644 --- a/packages/principal/CHANGELOG.md +++ b/packages/principal/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/principal-v5.1.0...principal-v0.7.0) (2023-04-11) + + +### Features + +* align implementation with receipt 0.2 spec ([#271](https://github.com/web3-storage/ucanto/issues/271)) ([aeea7e3](https://github.com/web3-storage/ucanto/commit/aeea7e3c7494143dce535792b0d53520e559c45a)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [5.1.0](https://github.com/web3-storage/ucanto/compare/principal-v5.0.2...principal-v5.1.0) (2023-03-07) diff --git a/packages/principal/package.json b/packages/principal/package.json index f10cfc97..c9ea3e6f 100644 --- a/packages/principal/package.json +++ b/packages/principal/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/principal", "description": "ucanto principal", - "version": "5.1.0", + "version": "0.7.0", "keywords": [ "UCAN", "ed25519", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 74d66627..c90da0c1 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/server-v6.1.0...server-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) ([25abb67](https://github.com/web3-storage/ucanto/commit/25abb679a05b1f4010cdb949c71537ca2611d9c7)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [6.1.0](https://github.com/web3-storage/ucanto/compare/server-v6.0.0...server-v6.1.0) (2023-03-13) diff --git a/packages/server/package.json b/packages/server/package.json index b2c365dc..014205ca 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/server", "description": "UCAN RPC Server", - "version": "6.1.0", + "version": "0.7.0", "types": "./dist/src/lib.d.ts", "main": "./src/lib.js", "keywords": [ diff --git a/packages/transport/CHANGELOG.md b/packages/transport/CHANGELOG.md index ac6ca7be..8faaa814 100644 --- a/packages/transport/CHANGELOG.md +++ b/packages/transport/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/transport-v5.1.1...transport-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* align implementation with receipt 0.2 spec ([#271](https://github.com/web3-storage/ucanto/issues/271)) ([aeea7e3](https://github.com/web3-storage/ucanto/commit/aeea7e3c7494143dce535792b0d53520e559c45a)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) +* versioned wire transport ([#274](https://github.com/web3-storage/ucanto/issues/274)) ([25abb67](https://github.com/web3-storage/ucanto/commit/25abb679a05b1f4010cdb949c71537ca2611d9c7)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [5.1.1](https://github.com/web3-storage/ucanto/compare/transport-v5.1.0...transport-v5.1.1) (2023-03-15) diff --git a/packages/transport/package.json b/packages/transport/package.json index 44826461..33155803 100644 --- a/packages/transport/package.json +++ b/packages/transport/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/transport", "description": "ucanto transport", - "version": "5.1.1", + "version": "0.7.0", "keywords": [ "UCAN", "RPC", diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index 0912c908..8df0d5ac 100644 --- a/packages/validator/CHANGELOG.md +++ b/packages/validator/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.7.0](https://github.com/web3-storage/ucanto/compare/validator-v6.1.0...validator-v0.7.0) (2023-04-11) + + +### ⚠ BREAKING CHANGES + +* migrate schema to core ([#273](https://github.com/web3-storage/ucanto/issues/273)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) + +### Features + +* implement invocation receipts ([#266](https://github.com/web3-storage/ucanto/issues/266)) ([5341416](https://github.com/web3-storage/ucanto/commit/5341416a5f1ba5048c41476bb6c6059556e8e27b)) +* migrate schema to core ([#273](https://github.com/web3-storage/ucanto/issues/273)) ([ce95504](https://github.com/web3-storage/ucanto/commit/ce95504a0e7cf7caf49418016dbb924b4cbc2e82)) +* update ucanto to invocation spec compatible result type ([#272](https://github.com/web3-storage/ucanto/issues/272)) ([b124ed8](https://github.com/web3-storage/ucanto/commit/b124ed8299a94e5a6b5abcb7cd075dd46ac4139d)) + + +### Miscellaneous Chores + +* release 0.7.0 ([b3a441d](https://github.com/web3-storage/ucanto/commit/b3a441d4f3d85ab5ae3e2a0331dfacbdd038be23)) + ## [6.1.0](https://github.com/web3-storage/ucanto/compare/validator-v6.0.0...validator-v6.1.0) (2023-03-13) diff --git a/packages/validator/package.json b/packages/validator/package.json index 060b7b5f..6e5882d0 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,7 +1,7 @@ { "name": "@ucanto/validator", "description": "UCAN RPC validators", - "version": "6.1.0", + "version": "0.7.0", "keywords": [ "UCAN", "ed25519",