Skip to content

Commit

Permalink
Prepare for 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Nov 10, 2021
1 parent 093e1dd commit 28eb107
Show file tree
Hide file tree
Showing 34 changed files with 3,576 additions and 3,449 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# Release Notes
## v0.3.0 - 2021-11-10
Bugfix release (refactoring)

- Fixed:
- Remove Presentation Definition from VP as these are separate types
- Fix creation of VP from submissionFrom
- Fix sameSubject and issuerIsOwner handling
- Fix JSON paths in matches
- Fix several tests to be more strict

- Updated:
- Remove usage of unknown/any types in favor of having interfaces and types
- Enable strict mode
- Refactoring of several classes
- Updated readme/flows

## v0.2.4 - 2021-10-06
Bugfix release

Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sphereon/pe-js",
"version": "0.2.5-UNSTABLE",
"version": "0.3.0",
"description": "A Typescript implementation of the DIF Presentation Exchange specification.",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
Expand All @@ -13,6 +13,7 @@
"Presentation Exchange",
"Verifiable Credentials",
"Verifiable Presentations",
"Selective Disclosyre",
"DIF"
],
"scripts": {
Expand All @@ -24,12 +25,12 @@
"clean": "rimraf node_modules dist coverage",

"fix": "run-s fix:*",
"fix:prettier": "prettier \"{lib, test}/**/*.ts\" --write",
"fix:prettier": "prettier \"{lib,test}/**/*.ts\" --write",
"fix:lint": "eslint . --ext .ts --fix",

"test": "run-s build test:*",
"test:lint": "eslint . --ext .ts",
"test:prettier": "prettier \"{lib, test}/**/*.ts\" --list-different",
"test:prettier": "prettier \"{lib,test}/**/*.ts\" --list-different",
"test:unit": "jest",
"test:cov": "jest --ci --coverage && codecov"
},
Expand Down
Loading

0 comments on commit 28eb107

Please sign in to comment.