From 48e5a0f53cb6731fa9a88e2f74a05bd5955967be Mon Sep 17 00:00:00 2001 From: James Chartrand Date: Wed, 9 Oct 2024 12:54:29 -0400 Subject: [PATCH] update version num, changelog, readme, sample compose --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- docker-compose.yml | 4 ++-- package.json | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9093f00..ac745de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # issuer-coordinator Changelog +## 1.00 - 2024-10-09 + +### Changed +- updating semver to reflect breaking change +- **BREAKING**: The libs that were updated in the prior release (0.3.0) now require that the top level id on a verifiable credential must be a uri. Any old (or new) clients calling the endpoints on this service with a vc that doesn't have a uri id will fail. + ## 0.3.0 - 2024-09-06 ### Changed - Convert Status List 2021 to Bitstring Status List. +- Update vc related libs, which also provide support for Verifiable Credentials version 2 - Differentiate between database status service and Git status service. - Rename environment variables. - Update revocation and suspension instructions. diff --git a/README.md b/README.md index 7302af6..9e190ea 100644 --- a/README.md +++ b/README.md @@ -77,11 +77,11 @@ Create a file called `docker-compose.yml` and add the following: version: '3.5' services: coordinator: - image: digitalcredentials/issuer-coordinator:0.2.0 + image: digitalcredentials/issuer-coordinator:1.0.0 ports: - "4005:4005" signer: - image: digitalcredentials/signing-service:0.3.0 + image: digitalcredentials/signing-service:1.0.0 ``` ### Run Service diff --git a/docker-compose.yml b/docker-compose.yml index f7874a0..56fbba2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,13 +1,13 @@ version: '3.5' services: coordinator: - image: digitalcredentials/issuer-coordinator:0.2.0 + image: digitalcredentials/issuer-coordinator:1.0.0 env_file: - ./.coordinator.env ports: - "4005:4005" signer: - image: digitalcredentials/signing-service:0.3.0 + image: digitalcredentials/signing-service:1.0.0 env_file: - ./.signing-service.env status: diff --git a/package.json b/package.json index 2a7cafb..a68f4b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@digitalcredentials/issuer-coordinator", - "version": "0.0.0", + "version": "1.0.0", "private": true, "type": "module", "scripts": {