Skip to content

Commit d1dd941

Browse files
committed
Release v1.0.2
1 parent 21fc25a commit d1dd941

File tree

9 files changed

+20
-12
lines changed

9 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v1.0.2
4+
5+
### Bugfixes
6+
7+
* Fix Stale Page Links ([#2719](https://github.com/samply/blaze/issues/2719))
8+
9+
The full changelog can be found [here](https://github.com/samply/blaze/milestone/107?closed=1).
10+
311
## v1.0.1
412

513
### Bugfixes

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && \
99
rm -rf /var/lib/apt/lists/
1010

1111
RUN mkdir -p /app/data && chown 1001:1001 /app/data
12-
COPY target/blaze-1.0.1-standalone.jar /app/
12+
COPY target/blaze-1.0.2-standalone.jar /app/
1313

1414
WORKDIR /app
1515
USER 1001
@@ -22,4 +22,4 @@ ENV RESOURCE_DB_DIR="/app/data/resource"
2222
ENV ADMIN_INDEX_DB_DIR="/app/data/admin-index"
2323
ENV ADMIN_TRANSACTION_DB_DIR="/app/data/admin-transaction"
2424

25-
CMD ["java", "-jar", "blaze-1.0.1-standalone.jar"]
25+
CMD ["java", "-jar", "blaze-1.0.2-standalone.jar"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A demo installation can be found [here](https://blaze.life.uni-leipzig.de/fhir)
2525

2626
Blaze is stable and widely used in the [Medical Informatics Initiative](https://www.medizininformatik-initiative.de) in Germany and in [Biobanks](https://www.bbmri-eric.eu) across Europe.
2727

28-
Latest release: [v1.0.1][5]
28+
Latest release: [v1.0.2][5]
2929

3030
## Key Features
3131

@@ -68,7 +68,7 @@ Unless required by applicable law or agreed to in writing, software distributed
6868
[2]: <https://samply.github.io/blaze/api/operation/measure-evaluate-measure.html>
6969
[3]: <https://cql.hl7.org/tests.html>
7070
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
71-
[5]: <https://github.com/samply/blaze/releases/tag/v1.0.1>
71+
[5]: <https://github.com/samply/blaze/releases/tag/v1.0.2>
7272
[6]: <https://www.yourkit.com/java/profiler/>
7373
[7]: <https://www.yourkit.com/.net/profiler/>
7474
[8]: <https://www.yourkit.com/youmonitor/>

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[java.time LocalDate]))
66

77
(def lib 'samply/blaze)
8-
(def version "1.0.1")
8+
(def version "1.0.2")
99
(def class-dir "target/classes")
1010
(def basis (b/create-basis {:project "deps.edn"}))
1111
(def uber-file (format "target/%s-%s-standalone.jar" (name lib) version))

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default defineConfig({
4040
nav: [
4141
{ text: 'Home', link: '/' },
4242
{
43-
text: 'v1.0.1',
43+
text: 'v1.0.2',
4444
items: [
4545
{
4646
text: 'Changelog',

modules/frontend-e2e/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/frontend-e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend-e2e",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "",
55
"main": "index.js",
66
"scripts": {},

modules/frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blaze-frontend",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"private": true,
55
"scripts": {
66
"dev": "vite dev",

0 commit comments

Comments
 (0)