Skip to content

Commit 6329f3c

Browse files
committed
fix lint error and prepare changelog and version
1 parent 5031d33 commit 6329f3c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# @digitalcredentials/vc ChangeLog
22

3-
## 9.0.0 - 2024-09-30
3+
## 9.0.1 - TBD
4+
5+
### Fixed
6+
- run status check before running expiry check because expiry check throws error that had prevented the status check from running
7+
8+
## 9.0.1 - 2024-09-30
49

510
### Fixed
611
- add signature checks to the log before running other verification checks whose errors might prevent that logging

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ async function _verifyPresentation(options = {}) {
550550

551551
for(const [i, credentialResult] of credentialResults.entries()) {
552552
credentialResult.credentialId = credentials[i].id;
553-
credentialResult.credential = credentials[i]
553+
credentialResult.credential = credentials[i];
554554
}
555555

556556
const allCredentialsVerified = credentialResults.every(r => r.verified);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@digitalcredentials/vc",
3-
"version": "9.0.1-beta.1",
3+
"version": "9.0.2",
44
"description": "Verifiable Credentials JavaScript library.",
55
"homepage": "https://github.com/digitalcredentials/vc",
66
"repository": {

0 commit comments

Comments
 (0)