From e1e91f77a68859da8e40ec0a66808158833cf926 Mon Sep 17 00:00:00 2001 From: Perfect Makanju Date: Tue, 5 Jan 2021 16:02:20 +0100 Subject: [PATCH] Release: v0.0.3 --- changelogs/v0.0.3.md | 13 +++++++++++++ lerna.json | 2 +- packages/sdk/README.md | 2 +- packages/sdk/package.json | 6 +++--- packages/storage/package.json | 4 ++-- packages/users/package.json | 2 +- 6 files changed, 21 insertions(+), 8 deletions(-) create mode 100644 changelogs/v0.0.3.md diff --git a/changelogs/v0.0.3.md b/changelogs/v0.0.3.md new file mode 100644 index 0000000..7409bc9 --- /dev/null +++ b/changelogs/v0.0.3.md @@ -0,0 +1,13 @@ +# CHANGELOG + +## v0.0.3 + +This release adds more user and identity features to the space-sdk. + +### New Features + +- Exposed [Identity](https://fleekhq.github.io/space-sdk/docs/sdk.identity) interface and raw public key field `pubKey`. + +### New Fixes + +No fixes diff --git a/lerna.json b/lerna.json index c4e98f6..79401fa 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.0.2", + "version": "0.0.3", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/sdk/README.md b/packages/sdk/README.md index da5811a..4d9e42a 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -99,7 +99,7 @@ If you are already familiar with the space daemon and its gRPC methods and would here are some pointers on how those gRPC methods correspond to functionalities exposed by the space-sdk. ### Key Pairs (GenerateKeyPair) -In the sdk the concept of Key Pairs is represented as an [`Identity`](https://fleekhq.github.io/space-sdk/docs/sdk.public). +In the sdk the concept of Key Pairs is represented as an [`Identity`](https://fleekhq.github.io/space-sdk/docs/sdk.identity). To create a new Identity similar to the `GenerateKeyPair` method, you would do: ```typescript diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 7c21b1e..9d69bde 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/sdk", - "version": "0.0.2", + "version": "0.0.3", "description": "Space SDK Library", "main": "dist/index", "types": "dist/index", @@ -33,7 +33,7 @@ "typescript": "^3.9.3" }, "dependencies": { - "@spacehq/storage": "^0.0.2", - "@spacehq/users": "^0.0.2" + "@spacehq/storage": "^0.0.3", + "@spacehq/users": "^0.0.3" } } diff --git a/packages/storage/package.json b/packages/storage/package.json index c95fea3..111ddfe 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/storage", - "version": "0.0.2", + "version": "0.0.3", "description": "Space storage implementation", "main": "dist/index", "types": "dist/index", @@ -38,7 +38,7 @@ "typescript": "^3.9.3" }, "dependencies": { - "@spacehq/users": "^0.0.2", + "@spacehq/users": "^0.0.3", "@textile/crypto": "^2.0.0", "@textile/hub": "^4.1.0", "@textile/threads-id": "^0.4.0", diff --git a/packages/users/package.json b/packages/users/package.json index 141deae..8622469 100644 --- a/packages/users/package.json +++ b/packages/users/package.json @@ -1,6 +1,6 @@ { "name": "@spacehq/users", - "version": "0.0.2", + "version": "0.0.3", "description": "Space users implementation", "main": "dist/index", "types": "dist/index",