diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d4cb1e..fb981e21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +### Bug Fixes + +- enum type ([c39d8e1](https://github.com/Sphereon-Opensource/OID4VCI/commit/c39d8e1d0b10f6f683dbd229c14e6299a9163e1c)) +- Extend Alg enum to allow for more algorithms. refs [#88](https://github.com/Sphereon-Opensource/OID4VCI/issues/88) ([6e76f57](https://github.com/Sphereon-Opensource/OID4VCI/commit/6e76f5759d2cf989f246ed8a4d45e6c5bd2cb06f)) + +### Features + +- Open the signing algorithm list in the credential issuance process, refs [#88](https://github.com/Sphereon-Opensource/OID4VCI/issues/88) ([d9b17af](https://github.com/Sphereon-Opensource/OID4VCI/commit/d9b17af8098f55b688891de5e536fa95560ef8af)) + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 4e8cfc74..8b362ccb 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "0.9.0", + "version": "0.10.0", "npmClient": "pnpm", "command": { "publish": { diff --git a/packages/callback-example/CHANGELOG.md b/packages/callback-example/CHANGELOG.md index f46b6936..5bda7c20 100644 --- a/packages/callback-example/CHANGELOG.md +++ b/packages/callback-example/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +**Note:** Version bump only for package @sphereon/oid4vci-callback-example + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/packages/callback-example/package.json b/packages/callback-example/package.json index ca5fc55e..3da61ba1 100644 --- a/packages/callback-example/package.json +++ b/packages/callback-example/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-callback-example", - "version": "0.9.0", + "version": "0.10.0", "description": "OpenID 4 Verifiable Credential Issuance issuer callback example", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 2fc0f41c..1cfce51d 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +**Note:** Version bump only for package @sphereon/oid4vci-client + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/packages/client/package.json b/packages/client/package.json index cf722883..e3399233 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-client", - "version": "0.9.0", + "version": "0.10.0", "description": "OpenID for Verifiable Credential Issuance (OpenID4VCI) client", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index aeae4b7d..b7872a72 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +### Bug Fixes + +- enum type ([c39d8e1](https://github.com/Sphereon-Opensource/OID4VCI/commit/c39d8e1d0b10f6f683dbd229c14e6299a9163e1c)) +- Extend Alg enum to allow for more algorithms. refs [#88](https://github.com/Sphereon-Opensource/OID4VCI/issues/88) ([6e76f57](https://github.com/Sphereon-Opensource/OID4VCI/commit/6e76f5759d2cf989f246ed8a4d45e6c5bd2cb06f)) + +### Features + +- Open the signing algorithm list in the credential issuance process, refs [#88](https://github.com/Sphereon-Opensource/OID4VCI/issues/88) ([d9b17af](https://github.com/Sphereon-Opensource/OID4VCI/commit/d9b17af8098f55b688891de5e536fa95560ef8af)) + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/packages/common/package.json b/packages/common/package.json index b0e3ab17..df0caea0 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-common", - "version": "0.9.0", + "version": "0.10.0", "description": "OpenID 4 Verifiable Credential Issuance Common Types", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/issuer-rest/CHANGELOG.md b/packages/issuer-rest/CHANGELOG.md index d1c47c5d..ef7e9b3e 100644 --- a/packages/issuer-rest/CHANGELOG.md +++ b/packages/issuer-rest/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +**Note:** Version bump only for package @sphereon/oid4vci-issuer-server + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/packages/issuer-rest/package.json b/packages/issuer-rest/package.json index ae421946..58c0842f 100644 --- a/packages/issuer-rest/package.json +++ b/packages/issuer-rest/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-issuer-server", - "version": "0.9.0", + "version": "0.10.0", "description": "OpenID 4 Verifiable Credential Issuance Server", "source": "lib/index.ts", "main": "dist/index.js", diff --git a/packages/issuer/CHANGELOG.md b/packages/issuer/CHANGELOG.md index 3f874bd5..7d0ec707 100644 --- a/packages/issuer/CHANGELOG.md +++ b/packages/issuer/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.9.0...v0.10.0) (2024-02-29) + +### Features + +- Open the signing algorithm list in the credential issuance process, refs [#88](https://github.com/Sphereon-Opensource/OID4VCI/issues/88) ([d9b17af](https://github.com/Sphereon-Opensource/OID4VCI/commit/d9b17af8098f55b688891de5e536fa95560ef8af)) + # [0.9.0](https://github.com/Sphereon-Opensource/OID4VCI/compare/v0.8.1...v0.9.0) (2024-02-16) ### Bug Fixes diff --git a/packages/issuer/package.json b/packages/issuer/package.json index 2c8c9005..0a5493c0 100644 --- a/packages/issuer/package.json +++ b/packages/issuer/package.json @@ -1,6 +1,6 @@ { "name": "@sphereon/oid4vci-issuer", - "version": "0.9.0", + "version": "0.10.0", "description": "OpenID 4 Verifiable Credential Issuance issuer REST endpoints", "source": "lib/index.ts", "main": "dist/index.js",