From 118bafe1be6b3f7a4fc825c13be8427fbf6b4fcd Mon Sep 17 00:00:00 2001 From: F-Node-Karlsruhe Date: Tue, 23 Jul 2024 12:47:50 +0200 Subject: [PATCH] fix show version number Signed-off-by: F-Node-Karlsruhe --- CHANGELOG.md | 4 ++++ api/package.json | 2 +- frontend/package.json | 2 +- frontend/src/store/index.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abd17bd..7347d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ VC Verifier Changelog WIP --- +2.0.1 (2024-07-23) + +- fix show version + 2.0.0 (2024-07-23) - add gs1 verification endpoint diff --git a/api/package.json b/api/package.json index 25884d8..f48e676 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "vc-verifier", - "version": "1.7.7", + "version": "2.0.1", "description": "The EECC verifier for verifiable credentials which provides an verification API as well as the corresponding UI.", "main": "index.js", "type": "module", diff --git a/frontend/package.json b/frontend/package.json index 9ea024f..270319d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "verifier_frontend", - "version": "1.7.7", + "version": "2.0.1", "description": "Vue frontend for the EECC vc verifier API", "scripts": { "build": "vue-cli-service build", diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index e1a4fec..a0deb69 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -5,7 +5,7 @@ import api from '../api' export default createStore({ state: { - version: '1.7.7', + version: '2.0.1', authentication: undefined, verifiables: [], disclosedCredentials: [],