diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b0625d..a8793a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ This log documents significant changes for each release. This project follows [Semantic Versioning](http://semver.org/). +## [2.14.5] - 2022-06-07 +### Added +- Version number to fhirpath.js demo page. +### Fixed +- "extension()" for primitive types did not work properly without a value. + ## [2.14.4] - 2022-05-23 ### Added - Suite of performance tests. diff --git a/demo/public/app.js b/demo/public/app.js index aa07495..9f80df1 100644 --- a/demo/public/app.js +++ b/demo/public/app.js @@ -13,6 +13,8 @@ require("codemirror/lib/codemirror.css"); const example = require("json-loader!yaml-loader!./patient-example.yaml"); +document.getElementById('version').innerText = '(version ' + fhirpath.version + ')'; + const debounce = (func, delay) => { let inDebounce; return () => { diff --git a/demo/public/index.html b/demo/public/index.html index 82c1148..122d014 100644 --- a/demo/public/index.html +++ b/demo/public/index.html @@ -2,6 +2,7 @@ + fhirpath.js Demo