Skip to content

Commit

Permalink
Release: v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectmak committed Jan 27, 2021
1 parent 08dc705 commit 5de484a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
15 changes: 15 additions & 0 deletions changelogs/v0.0.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# CHANGELOG

## v0.0.8

This release contains some new features and breaking changes to logic of existing functionality.

### New Features

- Add progress callback to `UserStorage.openFile` and `UserStorage.openFileByUuid`.
- Add `DirectoryEntry` to `UserStorage.addItems` result summary and events.


### New Fixes

No new Fixes
1 change: 0 additions & 1 deletion etc/sdk.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export interface AddItemsResultSummary {

// @public (undocumented)
export interface AddItemsStatus {
// (undocumented)
entry?: DirectoryEntry;
// (undocumented)
error?: Error;
Expand Down
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.7",
"version": "0.0.8",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
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.7",
"version": "0.0.8",
"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.7",
"@spacehq/users": "^0.0.7"
"@spacehq/storage": "^0.0.8",
"@spacehq/users": "^0.0.8"
}
}
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.7",
"version": "0.0.8",
"description": "Space storage implementation",
"main": "dist/index",
"types": "dist/index",
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.13.0",
"@spacehq/users": "^0.0.7",
"@spacehq/users": "^0.0.8",
"@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.7",
"version": "0.0.8",
"description": "Space users implementation",
"main": "dist/index",
"types": "dist/index",
Expand Down

0 comments on commit 5de484a

Please sign in to comment.