-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release 1.1.0 * package lock * Update docs/CHANGELOG.md Co-authored-by: Eric Swanson <[email protected]> --------- Co-authored-by: krpeacock <[email protected]> Co-authored-by: Kyle Peacock <[email protected]> Co-authored-by: Eric Swanson <[email protected]>
- Loading branch information
1 parent
2a31681
commit ad6ba89
Showing
13 changed files
with
89 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dfinity/agent", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"author": "DFINITY Stiftung <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "JavaScript and TypeScript library to interact with the Internet Computer", | ||
|
@@ -47,8 +47,8 @@ | |
"test:coverage": "jest --collectCoverage" | ||
}, | ||
"peerDependencies": { | ||
"@dfinity/candid": "^1.0.1", | ||
"@dfinity/principal": "^1.0.1" | ||
"@dfinity/candid": "^1.1.0", | ||
"@dfinity/principal": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"@noble/curves": "^1.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dfinity/assets", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"author": "DFINITY Stiftung <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "JavaScript and TypeScript library to manage assets on the Internet Computer", | ||
|
@@ -49,8 +49,8 @@ | |
"test:coverage": "jest --collectCoverage" | ||
}, | ||
"peerDependencies": { | ||
"@dfinity/agent": "^1.0.1", | ||
"@dfinity/principal": "^1.0.1", | ||
"@dfinity/agent": "^1.1.0", | ||
"@dfinity/principal": "^1.1.0", | ||
"@noble/hashes": "^1.3.1" | ||
}, | ||
"dependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dfinity/auth-client", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"author": "DFINITY Stiftung <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "JavaScript and TypeScript library to provide a simple integration with an IC Internet Identity", | ||
|
@@ -46,9 +46,9 @@ | |
"test:coverage": "jest --collectCoverage" | ||
}, | ||
"peerDependencies": { | ||
"@dfinity/agent": "^1.0.1", | ||
"@dfinity/identity": "^1.0.1", | ||
"@dfinity/principal": "^1.0.1" | ||
"@dfinity/agent": "^1.1.0", | ||
"@dfinity/identity": "^1.1.0", | ||
"@dfinity/principal": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"idb": "^7.0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dfinity/bls-verify", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"author": "DFINITY Stiftung <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "bls verification strategy in JavaScript", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dfinity/candid", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"author": "DFINITY Stiftung <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "JavaScript and TypeScript library to work with candid interfaces", | ||
|
@@ -48,7 +48,7 @@ | |
"test:coverage": "jest --collectCoverage" | ||
}, | ||
"peerDependencies": { | ||
"@dfinity/principal": "^1.0.1" | ||
"@dfinity/principal": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.5.5", | ||
|
Oops, something went wrong.