Skip to content

Commit

Permalink
chore: release ucanto (#81)
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 Aug 15, 2022
1 parent 4d21132 commit 37f1d66
Show file tree
Hide file tree
Showing 16 changed files with 164 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"packages/authority":"0.4.5","packages/client":"0.5.4","packages/core":"0.5.4","packages/interface":"0.6.2","packages/server":"0.6.4","packages/transport":"0.6.3","packages/validator":"0.5.5"}
{"packages/authority":"0.5.0","packages/client":"0.6.0","packages/core":"0.6.0","packages/interface":"0.7.0","packages/server":"0.7.0","packages/transport":"0.7.0","packages/validator":"0.6.0"}
16 changes: 15 additions & 1 deletion packages/authority/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.0](https://www.github.com/web3-storage/ucanto/compare/authority-v0.4.5...authority-v0.5.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0

### [0.4.5](https://www.github.com/web3-storage/ucanto/compare/authority-v0.4.4...authority-v0.4.5) (2022-07-11)


Expand Down Expand Up @@ -96,4 +110,4 @@

### Features

* refactor into monorepo ([#13](https://www.github.com/web3-storage/ucanto/issues/13)) ([1f99506](https://www.github.com/web3-storage/ucanto/commit/1f995064ec6e5953118c2dd1065ee6be959f25b9))
* refactor into monorepo ([#13](https://www.github.com/web3-storage/ucanto/issues/13)) ([1f99506](https://www.github.com/web3-storage/ucanto/commit/1f995064ec6e5953118c2dd1065ee6be959f25b9))
4 changes: 2 additions & 2 deletions packages/authority/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/authority",
"description": "ed25519 identity",
"version": "0.4.5",
"version": "0.5.0",
"keywords": [
"UCAN",
"ed25519",
Expand Down Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"@ipld/dag-ucan": "^1.7.0-beta",
"@noble/ed25519": "^1.6.1",
"@ucanto/interface": "^0.6.2",
"@ucanto/interface": "^0.7.0",
"multiformats": "^9.6.4"
},
"devDependencies": {
Expand Down
20 changes: 19 additions & 1 deletion packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.6.0](https://www.github.com/web3-storage/ucanto/compare/client-v0.5.4...client-v0.6.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0
* devDependencies
* @ucanto/authority bumped from ^0.4.5 to ^0.5.0
* @ucanto/core bumped from ^0.5.4 to ^0.6.0
* @ucanto/transport bumped from ^0.6.3 to ^0.7.0

### [0.5.4](https://www.github.com/web3-storage/ucanto/compare/client-v0.5.3...client-v0.5.4) (2022-07-11)


Expand Down Expand Up @@ -133,4 +151,4 @@
* devDependencies
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
* @ucanto/transport bumped from 0.0.1 to ^0.2.0
* @ucanto/core bumped from 0.0.1 to ^0.2.0
* @ucanto/core bumped from 0.0.1 to ^0.2.0
10 changes: 5 additions & 5 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/client",
"description": "UCAN RPC Client",
"version": "0.5.4",
"version": "0.6.0",
"keywords": [
"UCAN",
"RPC",
Expand Down Expand Up @@ -29,16 +29,16 @@
"build": "tsc --build"
},
"dependencies": {
"@ucanto/interface": "^0.6.2",
"@ucanto/interface": "^0.7.0",
"multiformats": "^9.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.0",
"@ucanto/authority": "^0.4.5",
"@ucanto/core": "^0.5.4",
"@ucanto/transport": "^0.6.3",
"@ucanto/authority": "^0.5.0",
"@ucanto/core": "^0.6.0",
"@ucanto/transport": "^0.7.0",
"@web-std/fetch": "^4.1.0",
"@web-std/file": "^3.0.2",
"c8": "^7.11.0",
Expand Down
18 changes: 17 additions & 1 deletion packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.6.0](https://www.github.com/web3-storage/ucanto/compare/core-v0.5.4...core-v0.6.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0
* devDependencies
* @ucanto/authority bumped from ^0.4.5 to ^0.5.0

### [0.5.4](https://www.github.com/web3-storage/ucanto/compare/core-v0.5.3...core-v0.5.4) (2022-07-11)


Expand Down Expand Up @@ -111,4 +127,4 @@
* dependencies
* @ucanto/interface bumped from 0.0.1 to ^0.2.0
* devDependencies
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/core",
"description": "ucanto core",
"version": "0.5.4",
"version": "0.6.0",
"keywords": [
"UCAN",
"RPC",
Expand Down Expand Up @@ -32,14 +32,14 @@
"@ipld/car": "^4.1.0",
"@ipld/dag-cbor": "^7.0.1",
"@ipld/dag-ucan": "^1.7.0-beta",
"@ucanto/interface": "^0.6.2",
"@ucanto/interface": "^0.7.0",
"multiformats": "^9.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.0",
"@ucanto/authority": "^0.4.5",
"@ucanto/authority": "^0.5.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-subset": "^1.6.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.0](https://www.github.com/web3-storage/ucanto/compare/interface-v0.6.2...interface-v0.7.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))

### [0.6.2](https://www.github.com/web3-storage/ucanto/compare/interface-v0.6.1...interface-v0.6.2) (2022-07-01)


Expand Down
2 changes: 1 addition & 1 deletion packages/interface/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/interface",
"description": "interface definitions for ucanto",
"version": "0.6.2",
"version": "0.7.0",
"types": "./dist/src/lib.d.ts",
"main": "./src/lib.js",
"keywords": [
Expand Down
22 changes: 21 additions & 1 deletion packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.7.0](https://www.github.com/web3-storage/ucanto/compare/server-v0.6.4...server-v0.7.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/core bumped from ^0.5.4 to ^0.6.0
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0
* @ucanto/validator bumped from ^0.5.5 to ^0.6.0
* devDependencies
* @ucanto/authority bumped from ^0.4.5 to ^0.5.0
* @ucanto/client bumped from ^0.5.4 to ^0.6.0
* @ucanto/transport bumped from ^0.6.3 to ^0.7.0

### [0.6.4](https://www.github.com/web3-storage/ucanto/compare/server-v0.6.3...server-v0.6.4) (2022-07-11)


Expand Down Expand Up @@ -165,4 +185,4 @@
* devDependencies
* @ucanto/client bumped from 0.0.1 to ^0.2.0
* @ucanto/transport bumped from 0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
14 changes: 7 additions & 7 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/server",
"description": "UCAN RPC Server",
"version": "0.6.4",
"version": "0.7.0",
"types": "./dist/src/lib.d.ts",
"main": "./src/lib.js",
"keywords": [
Expand All @@ -28,17 +28,17 @@
"build": "tsc --build"
},
"dependencies": {
"@ucanto/core": "^0.5.4",
"@ucanto/interface": "^0.6.2",
"@ucanto/validator": "^0.5.5"
"@ucanto/core": "^0.6.0",
"@ucanto/interface": "^0.7.0",
"@ucanto/validator": "^0.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.0",
"@ucanto/authority": "^0.4.5",
"@ucanto/client": "^0.5.4",
"@ucanto/transport": "^0.6.3",
"@ucanto/authority": "^0.5.0",
"@ucanto/client": "^0.6.0",
"@ucanto/transport": "^0.7.0",
"@web-std/fetch": "^4.1.0",
"@web-std/file": "^3.0.2",
"c8": "^7.11.0",
Expand Down
19 changes: 18 additions & 1 deletion packages/transport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.7.0](https://www.github.com/web3-storage/ucanto/compare/transport-v0.6.3...transport-v0.7.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/core bumped from ^0.5.4 to ^0.6.0
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0
* devDependencies
* @ucanto/authority bumped from ^0.4.5 to ^0.5.0

### [0.6.3](https://www.github.com/web3-storage/ucanto/compare/transport-v0.6.2...transport-v0.6.3) (2022-07-11)


Expand Down Expand Up @@ -125,4 +142,4 @@
* @ucanto/interface bumped from 0.0.1 to ^0.2.0
* @ucanto/core bumped from 0.0.1 to ^0.2.0
* devDependencies
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
8 changes: 4 additions & 4 deletions packages/transport/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/transport",
"description": "ucanto transport",
"version": "0.6.3",
"version": "0.7.0",
"keywords": [
"UCAN",
"RPC",
Expand Down Expand Up @@ -31,15 +31,15 @@
"dependencies": {
"@ipld/car": "^4.1.0",
"@ipld/dag-cbor": "^7.0.1",
"@ucanto/core": "^0.5.4",
"@ucanto/interface": "^0.6.2",
"@ucanto/core": "^0.6.0",
"@ucanto/interface": "^0.7.0",
"multiformats": "^9.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.0",
"@ucanto/authority": "^0.4.5",
"@ucanto/authority": "^0.5.0",
"@web-std/fetch": "^4.1.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
Expand Down
20 changes: 19 additions & 1 deletion packages/validator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.6.0](https://www.github.com/web3-storage/ucanto/compare/validator-v0.5.5...validator-v0.6.0) (2022-07-28)


### Features

* delgation iterate, more errors and types ([0606168](https://www.github.com/web3-storage/ucanto/commit/0606168313d17d66bcc1ad6091440765e1700a4f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @ucanto/core bumped from ^0.5.4 to ^0.6.0
* @ucanto/interface bumped from ^0.6.2 to ^0.7.0
* devDependencies
* @ucanto/authority bumped from ^0.4.5 to ^0.5.0
* @ucanto/client bumped from ^0.5.4 to ^0.6.0

### [0.5.5](https://www.github.com/web3-storage/ucanto/compare/validator-v0.5.4...validator-v0.5.5) (2022-07-11)


Expand Down Expand Up @@ -138,4 +156,4 @@
* @ucanto/interface bumped from ^0.0.1 to ^0.2.0
* devDependencies
* @ucanto/client bumped from ^0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
* @ucanto/authority bumped from 0.0.1 to ^0.2.0
10 changes: 5 additions & 5 deletions packages/validator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ucanto/validator",
"description": "UCAN RPC validators",
"version": "0.5.5",
"version": "0.6.0",
"keywords": [
"UCAN",
"ed25519",
Expand Down Expand Up @@ -29,16 +29,16 @@
"dependencies": {
"@ipld/car": "^4.1.0",
"@ipld/dag-cbor": "^7.0.1",
"@ucanto/core": "^0.5.4",
"@ucanto/interface": "^0.6.2",
"@ucanto/core": "^0.6.0",
"@ucanto/interface": "^0.7.0",
"multiformats": "^9.6.4"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.0",
"@ucanto/authority": "^0.4.5",
"@ucanto/client": "^0.5.4",
"@ucanto/authority": "^0.5.0",
"@ucanto/client": "^0.6.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-subset": "^1.6.0",
Expand Down
Loading

0 comments on commit 37f1d66

Please sign in to comment.