From 2d5d367b9cf44fae65d807136623174b061b54df Mon Sep 17 00:00:00 2001 From: Akos Foldesi Date: Tue, 21 Apr 2026 07:28:43 +0200 Subject: [PATCH] chore: 0.3.0 version sync with openid4vp --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 034b941..c21df39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.3.0] — 2026-04-21 + +### Changed + +- **Version sync** with `@openeudi/openid4vp@0.3.0`. No code or API changes in this package. Both packages are now versioned in lockstep starting 0.3.0; this release exists to keep dependents' consumption patterns aligned. + +[0.3.0]: https://github.com/openeudi/core/releases/tag/v0.3.0 + ## [0.2.0] - 2026-03-29 ### Breaking Changes diff --git a/package.json b/package.json index b9f3218..0f0b369 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeudi/core", - "version": "0.2.0", + "version": "0.3.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 c9f994d..7f448fd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ // @openeudi/core -- EUDI Wallet verification protocol engine -export const VERSION = '0.2.0'; +export const VERSION = '0.3.0'; // Types export { VerificationType, VerificationStatus } from './types/index.js';