diff --git a/Makefile b/Makefile
index 406813d8e..f693c4e37 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = "0.7.0-fix-code.3"
+VERSION = "0.7.0-beta.3"
check:
clojure -A:check
diff --git a/README.md b/README.md
index 8c25933bf..ca018768a 100644
--- a/README.md
+++ b/README.md
@@ -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.7.0-fix-code.3
+docker run -p 8080:8080 liferesearch/blaze:0.7.0-beta.3
```
### Java
```bash
-wget https://github.com/life-research/blaze/releases/download/v0.7.0-beta.1/blaze-0.7.0-fix-code.3-standalone.jar
-java -jar blaze-0.7.0-fix-code.3-standalone.jar
+wget https://github.com/life-research/blaze/releases/download/v0.7.0-beta.1/blaze-0.7.0-beta.3-standalone.jar
+java -jar blaze-0.7.0-beta.3-standalone.jar
```
Logging output should appear which prints the most important settings and system parameters like Java version and available memory.
diff --git a/docker-compose.yml b/docker-compose.yml
index f2014069a..644aae056 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -11,7 +11,7 @@ services:
volumes:
- "db-data:/data"
store:
- image: "liferesearch/blaze:0.7.0-fix-code.3"
+ image: "liferesearch/blaze:0.7.0-beta.3"
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 7327b5792..75464dcfc 100644
--- a/docs/index.adoc
+++ b/docs/index.adoc
@@ -70,14 +70,14 @@ You can change the data dir in the properties file if you like to have it at a d
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.7.0-beta.1[here].
-Look for `blaze-0.7.0-fix-code.3-standalone.jar`.
+Look for `blaze-0.7.0-beta.3-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.7.0-fix-code.3-standalone.jar
+DATABASE_URI=datomic:free://localhost:4334/db java -server -Xms2g -Xmx2g -XX:+UseG1GC -jar blaze-0.7.0-beta.3-standalone.jar
```
Under Windows you need to set the Environment variables in the PowerShell before starting Blaze:
diff --git a/pom.xml b/pom.xml
index db8b14548..f26f4152f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
life-research
blaze
- 0.7.0-fix-code.3
+ 0.7.0-beta.3
blaze
A FHIR Store with internal, fast CQL Evaluation Engine
diff --git a/src/blaze/system.clj b/src/blaze/system.clj
index e92a6008d..42f14a53a 100644
--- a/src/blaze/system.clj
+++ b/src/blaze/system.clj
@@ -62,7 +62,7 @@
(def ^:private root-config
- {:blaze/version "0.7.0-fix-code.3"
+ {:blaze/version "0.7.0-beta.3"
:blaze/clock {}