Skip to content

Commit

Permalink
v2.1.0 (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
skgbafa authored Jul 28, 2023
1 parent c942c3c commit 956d9fa
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 22 deletions.
19 changes: 0 additions & 19 deletions .changeset/chatty-doors-tap.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/ssx-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @spruceid/ssx-react

## 2.0.2

### Patch Changes

- Updated dependencies [c942c3c]
- @spruceid/ssx@2.1.0

## 2.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ssx-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-react",
"version": "2.0.1",
"version": "2.0.2",
"description": "SSX React Hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -36,7 +36,7 @@
"build": "tsc"
},
"dependencies": {
"@spruceid/ssx": "2.0.1"
"@spruceid/ssx": "2.1.0"
},
"peerDependencies": {
"wagmi": ">=0.5.0"
Expand Down
20 changes: 20 additions & 0 deletions packages/ssx-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @spruceid/ssx

## 2.1.0

### Minor Changes

- c942c3c: This adds the Credentials Modules, which allows developers to fetch credentials issued on SpruceKit Credential Issuer.
This module requires Storage Module, so you must enable both to make it work.

```ts
const ssx = SSX({
modules: {
storage: true,
credentials: true,
},
});

await ssx.signIn();

const { data } = ssx.credentials.list();
```

## 2.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ssx-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx",
"version": "2.0.1",
"version": "2.1.0",
"description": "An identity solution that enables SSI to JS/TS apps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 956d9fa

Please sign in to comment.