Skip to content

Commit b19e192

Browse files
committed
Release v0.6.2
* Disable Name Resolution in Proxy Mode (#29)
1 parent 538c40a commit b19e192

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ RUN lein uberjar
77

88
FROM openjdk:8u222-jre
99

10-
COPY --from=build /build/target/blaze-0.6.2-beta.1-standalone.jar /app/
10+
COPY --from=build /build/target/blaze-0.6.2-standalone.jar /app/
1111

1212
WORKDIR /app
1313

14-
CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.2-beta.1-standalone.jar"]
14+
CMD ["/bin/bash", "-c", "java $JVM_OPTS -jar blaze-0.6.2-standalone.jar"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ In order to run Blaze with an in-memory, volatile database, just execute the fol
2323
### Docker
2424

2525
```bash
26-
docker run -p 8080:8080 liferesearch/blaze:0.6.2-beta.1
26+
docker run -p 8080:8080 liferesearch/blaze:0.6.2
2727
```
2828

2929
### Java
3030

3131
```bash
32-
wget https://github.com/life-research/blaze/releases/download/v0.6.2-beta.1/blaze-0.6.2-beta.1-standalone.jar
33-
java -jar blaze-0.6.2-beta.1-standalone.jar
32+
wget https://github.com/life-research/blaze/releases/download/v0.6.2-beta.1/blaze-0.6.2-standalone.jar
33+
java -jar blaze-0.6.2-standalone.jar
3434
```
3535

3636
Logging output should appear which prints the most important settings and system parameters like Java version and available memory.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
volumes:
1212
- "db-data:/data"
1313
store:
14-
image: "liferesearch/blaze:0.6.2-beta.1"
14+
image: "liferesearch/blaze:0.6.2"
1515
environment:
1616
BASE_URL: "http://localhost:8080"
1717
DATABASE_URI: "datomic:free://db:4334/dev?password=datomic"

docs/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ You can change the data dir in the properties file if you like to have it at a d
7070

7171
Blaze runs on the JVM and comes as single JAR file.
7272
Download the most recent version https://github.com/life-research/blaze/releases/tag/v0.6.2-beta.1[here].
73-
Look for `blaze-0.6.2-beta.1-standalone.jar`.
73+
Look for `blaze-0.6.2-standalone.jar`.
7474
In addition to the JAR file, Blaze needs a set of FHIR® structure definitions to build it's database schema.
7575
Please download and unpack the `fhir.zip` from the same location.
7676

7777
After the download, you can start blaze with the following command (Linux, MacOS):
7878

7979
```
80-
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.6.2-beta.1-standalone.jar
80+
DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.6.2-standalone.jar
8181
```
8282

8383
Under Windows you need to set the Environment variables in the PowerShell before starting Blaze:

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject blaze "0.6.2-beta.1"
1+
(defproject blaze "0.6.2"
22
:description "A FHIR Store with internal, fast CQL Evaluation Engine"
33
:url "https://github.com/life-research/blaze"
44

src/blaze/system.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090

9191
;; ---- Functions -------------------------------------------------------------
9292

93-
(def ^:private version "0.6.2-beta.1")
93+
(def ^:private version "0.6.2")
9494

9595
(def ^:private base-url "http://localhost:8080")
9696

0 commit comments

Comments
 (0)