From 538c40a21a521f1be8af25baf73e3e5221b4f52f Mon Sep 17 00:00:00 2001 From: Alexander Kiel Date: Thu, 5 Sep 2019 19:25:48 +0200 Subject: [PATCH] Release v0.6.2-beta.1 * Disable Name Resolution in Proxy Mode (#29) --- Dockerfile | 4 ++-- README.md | 10 +++++----- docker-compose.yml | 2 +- docs/index.adoc | 6 +++--- project.clj | 2 +- src/blaze/system.clj | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index a11854196..2be3004f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ RUN lein uberjar FROM openjdk:8u222-jre -COPY --from=build /build/target/blaze-0.6.1-standalone.jar /app/ +COPY --from=build /build/target/blaze-0.6.2-beta.1-standalone.jar /app/ WORKDIR /app -CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.1-standalone.jar"] +CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.2-beta.1-standalone.jar"] diff --git a/README.md b/README.md index 0631721f6..e9aa2c454 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The goal of this project is to provide a FHIR® Store with an internal CQL Evalu The project is currently under active development. Essentially all official [CQL Tests][3] pass. Please report any issues you encounter during evaluation. -Latest release: [v0.6.1][5] +Latest release: [v0.6.2-beta.1][5] ## Quick Start @@ -23,14 +23,14 @@ In order to run Blaze with an in-memory, volatile database, just execute the fol ### Docker ```bash -docker run -p 8080:8080 liferesearch/blaze:0.6.1 +docker run -p 8080:8080 liferesearch/blaze:0.6.2-beta.1 ``` ### Java ```bash -wget https://github.com/life-research/blaze/releases/download/v0.6.1/blaze-0.6.1-standalone.jar -java -jar blaze-0.6.1-standalone.jar +wget https://github.com/life-research/blaze/releases/download/v0.6.2-beta.1/blaze-0.6.2-beta.1-standalone.jar +java -jar blaze-0.6.2-beta.1-standalone.jar ``` Logging output should appear which prints the most important settings and system parameters like Java version and available memory. @@ -56,4 +56,4 @@ your option) any later version. [2]: [3]: [4]: -[5]: +[5]: diff --git a/docker-compose.yml b/docker-compose.yml index 2315c8a11..1223fd779 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,7 @@ services: volumes: - "db-data:/data" store: - image: "liferesearch/blaze:0.6.1" + image: "liferesearch/blaze:0.6.2-beta.1" environment: BASE_URL: "http://localhost:8080" DATABASE_URI: "datomic:free://db:4334/dev?password=datomic" diff --git a/docs/index.adoc b/docs/index.adoc index 46714a4c6..c8f1efd9f 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -69,15 +69,15 @@ You can change the data dir in the properties file if you like to have it at a d ==== Install Blaze Blaze runs on the JVM and comes as single JAR file. -Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.6.1[here]. -Look for `blaze-0.6.1-standalone.jar`. +Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.6.2-beta.1[here]. +Look for `blaze-0.6.2-beta.1-standalone.jar`. In addition to the JAR file, Blaze needs a set of FHIR® structure definitions to build it's database schema. Please download and unpack the `fhir.zip` from the same location. After the download, you can start blaze with the following command (Linux, MacOS): ``` -DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.6.1-standalone.jar +DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.6.2-beta.1-standalone.jar ``` Under Windows you need to set the Environment variables in the PowerShell before starting Blaze: diff --git a/project.clj b/project.clj index 6ded1e513..4123d8d4e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject blaze "0.6.1" +(defproject blaze "0.6.2-beta.1" :description "A FHIR Store with internal, fast CQL Evaluation Engine" :url "https://github.com/life-research/blaze" diff --git a/src/blaze/system.clj b/src/blaze/system.clj index 8a8607c11..531a9e18b 100644 --- a/src/blaze/system.clj +++ b/src/blaze/system.clj @@ -90,7 +90,7 @@ ;; ---- Functions ------------------------------------------------------------- -(def ^:private version "0.6.1") +(def ^:private version "0.6.2-beta.1") (def ^:private base-url "http://localhost:8080")