diff --git a/CHANGELOG.md b/CHANGELOG.md index 638869e..7ee25c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.0] + +### Added + +- **[VCI Directory](https://github.com/the-commons-project/vci-directory) support**: `SHC` validation using `SHCReader` now supports the usage of public directories for public key resolution and for revocation status check +- **Revocation identifier support**: `SHCIssuer` can now issue `SHC` with a `rid` (revocation identifier) value, which can be used to determine if that SMART Health Card has been revoked + ## [1.0.2] ### Fixed diff --git a/demo/medplum-shl/package.json b/demo/medplum-shl/package.json index c89744d..7864b9f 100644 --- a/demo/medplum-shl/package.json +++ b/demo/medplum-shl/package.json @@ -1,6 +1,6 @@ { "name": "shl-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "type": "module", "scripts": { diff --git a/demo/shc/package.json b/demo/shc/package.json index d484509..88c5af8 100644 --- a/demo/shc/package.json +++ b/demo/shc/package.json @@ -1,6 +1,6 @@ { "name": "kill-the-clipboard-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "description": "Demo application demonstrating SMART Health Cards QR code generation and scanning - FOR TESTING ONLY", "type": "module", diff --git a/demo/shl/package.json b/demo/shl/package.json index 082b723..d0de0d9 100644 --- a/demo/shl/package.json +++ b/demo/shl/package.json @@ -1,6 +1,6 @@ { "name": "shl-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 9a4c058..cb65bf6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kill-the-clipboard", - "version": "1.0.2", + "version": "1.1.0", "description": "JavaScript/TypeScript universal (browser and node) library to generate QR codes containing medical records for patients to share with providers. Implements both the SMART Health Cards Framework and SMART Health Links Protocol for handling FHIR-based medical records.", "type": "module", "main": "./dist/index.cjs",