diff --git a/CHANGELOG.md b/CHANGELOG.md index ae29984..9986c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). +## [0.7.0] — 2026-04-25 + +### Changed + +- Paired version bump with `@openeudi/openid4vp@0.7.0` (synchronized-versioning rule). No API change in `@openeudi/core` this release — the openid4vp companion adds signed authorization requests (JAR / `x509_san_dns`), encrypted `direct_post.jwt` response handling, and the OpenID4VP 1.0 §8.1 envelope verifier; this bump keeps the two packages on parallel release cadences. + +[0.7.0]: https://github.com/openeudi/core/releases/tag/v0.7.0 + +## [0.6.0] — 2026-04-24 + +### Changed + +- Paired version bump with `@openeudi/openid4vp@0.6.0` (synchronized-versioning rule). No API change in `@openeudi/core` — the openid4vp companion surfaces dcql-native `value_mismatch` reasons after the dcql 0.2.0 upgrade. + +[0.6.0]: https://github.com/openeudi/core/releases/tag/v0.6.0 + ## [0.5.0] — 2026-04-23 ### Changed diff --git a/package-lock.json b/package-lock.json index 861b600..49846fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@openeudi/core", - "version": "0.4.0", + "version": "0.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@openeudi/core", - "version": "0.4.0", + "version": "0.7.0", "license": "Apache-2.0", "dependencies": { "uuid": "^11.1.0" diff --git a/package.json b/package.json index c8d4f72..400c5b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeudi/core", - "version": "0.6.0", + "version": "0.7.0", "description": "Framework-agnostic EUDI Wallet verification protocol engine", "license": "Apache-2.0", "type": "module", diff --git a/src/index.ts b/src/index.ts index 8764ab9..8a25a29 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ // @openeudi/core -- EUDI Wallet verification protocol engine -export const VERSION = '0.5.0'; +export const VERSION = '0.7.0'; // Types export { VerificationType, VerificationStatus } from './types/index.js';