From b5973da4474d1478f8e7fd45480d1c3b69307232 Mon Sep 17 00:00:00 2001 From: F-Node-Karlsruhe Date: Wed, 14 Jun 2023 17:41:39 +0200 Subject: [PATCH] release 1.5.3 Signed-off-by: F-Node-Karlsruhe --- CHANGELOG.md | 6 +++++- api/package.json | 2 +- frontend/package.json | 4 ++-- frontend/src/store/index.js | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a9dd67..63ab698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,12 @@ VC Verifier Changelog WIP --- + +1.5.3 (2023-06-14) +--- + - always use id hash as the credential identifier -- add proof challenge as query param +- add proof challenge & domain as query param 1.5.2 (2023-06-05) diff --git a/api/package.json b/api/package.json index 4a10d6e..3bc0034 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "vc-verifier", - "version": "1.0.0", + "version": "1.5.3", "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 d3496ec..ddb4019 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "verifier_frontend", - "version": "1.5.2", + "version": "1.5.3", "description": "Vue frontend for the EECC vc verifier API", "scripts": { "build": "vue-cli-service build", @@ -61,4 +61,4 @@ "sass": "^1.32.7", "sass-loader": "^12.0.0" } -} +} \ No newline at end of file diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index e70fe68..c524a36 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -3,7 +3,7 @@ import { createStore } from 'vuex' export default createStore({ state: { - version: '1.5.2', + version: '1.5.3', verifiables: [], VC_REGISTRY: process.env.VC_REGISTRY || 'https://ssi.eecc.de/api/registry/vcs/', OPENID_ENDPOINT: process.env.OPENID_ENDPOINT || 'https://ssi.eecc.de/api/openid/',