diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d9db79..2f8596b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # workflow-coordinator Changelog -## 1.0.0 - TBD - -### Added -- Initial commit. +## 1.0.0 - 2024-10-11 ### Changed -- Convert Status List 2021 to Bitstring Status List. +- **BREAKING**: Convert Status List 2021 to Bitstring Status List. NOTE: If you used older versions of the workflow coordinator with a Status List 2021 service (like the DCC status-service based on git), then you'll need to setup a new status list for this version. Your old credentials will continue to validate with the old status list (provided you keep the public list available). - Differentiate between database status service and Git status service. - Rename environment variables. - Update revocation and suspension instructions. +- fix revocation call to status service + +see github for prior history \ No newline at end of file diff --git a/README.md b/README.md index e8d9f92..5f11a9a 100644 --- a/README.md +++ b/README.md @@ -221,13 +221,13 @@ Create a file called `docker-compose.yml` and add the following: version: '3.5' services: coordinator: - image: digitalcredentials/workflow-coordinator:0.1.0 + image: digitalcredentials/workflow-coordinator:1.0.0 ports: - "4005:4005" signing: - image: digitalcredentials/signing-service:0.1.0 + image: digitalcredentials/signing-service:1.0.0 transaction: - image: digitalcredentials/transaction-service:0.1.0 + image: digitalcredentials/transaction-service:0.2.0 status: image: digitalcredentials/status-service-db:0.1.0 # NOTE: If you would prefer to use the Git based status manager instead @@ -237,7 +237,7 @@ services: # image: digitalcredentials/status-service-git:0.1.0 ``` -Note that as of this writing (October 2nd 2023), the versions of each image are at 0.1.0. These will change over time. Read more in [Versioning](#versioning). +Note that as of this writing (October 11 2024), the versions of each image are as listed above. These will change over time. Read more in [Versioning](#versioning). ### Run Service diff --git a/package.json b/package.json index f27581a..68765c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@digitalcredentials/workflow-coordinator", - "version": "0.0.0", + "version": "1.0.0", "private": true, "type": "module", "scripts": {