Skip to content

Commit

Permalink
Release: v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectmak committed Jan 5, 2021
1 parent e0c77b1 commit e1e91f7
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions changelogs/v0.0.3.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.0.2",
"version": "0.0.3",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
}
}
4 changes: 2 additions & 2 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/users/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit e1e91f7

Please sign in to comment.