diff --git a/CHANGELOG.md b/CHANGELOG.md
index bdda7162b..5babd7402 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## v0.14.0
+
+### New Features
+
+* Allow Disabling Referential Integrity ([#544](https://github.com/samply/blaze/pull/544))
+
+The full changelog can be found [here](https://github.com/samply/blaze/milestone/11?closed=1).
+
## v0.13.5
### Bugfixes
diff --git a/docs/deployment/docker-deployment.md b/docs/deployment/docker-deployment.md
index 0ddb3113b..979f948ff 100644
--- a/docs/deployment/docker-deployment.md
+++ b/docs/deployment/docker-deployment.md
@@ -27,7 +27,7 @@ Blaze should log something like this:
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:64] - JVM version: 16.0.2
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:65] - Maximum available memory: 1738 MiB
2021-06-27T11:02:37.835Z ee086ef908c1 main INFO [blaze.core:66] - Number of available processors: 8
-2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.13.5 in 8.2 seconds
+2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.14.0 in 8.2 seconds
```
In order to test connectivity, query the health endpoint:
@@ -47,7 +47,7 @@ that should return:
```json
{
"name": "Blaze",
- "version": "0.13.5"
+ "version": "0.14.0"
}
```
diff --git a/docs/deployment/manual-deployment.md b/docs/deployment/manual-deployment.md
index 3e18c6554..208afaeff 100644
--- a/docs/deployment/manual-deployment.md
+++ b/docs/deployment/manual-deployment.md
@@ -2,12 +2,12 @@
The installation works under Windows, Linux and macOS. The only dependency is an installed OpenJDK 11. Blaze is tested with [AdoptOpenJDK][1].
-Blaze runs on the JVM and comes as single JAR file. Download the most recent version [here](https://github.com/samply/blaze/releases/tag/v0.13.1). Look for `blaze-0.13.5-standalone.jar`.
+Blaze runs on the JVM and comes as single JAR file. Download the most recent version [here](https://github.com/samply/blaze/releases/tag/v0.13.1). Look for `blaze-0.14.0-standalone.jar`.
After the download, you can start blaze with the following command (Linux, macOS):
```sh
-java -jar blaze-0.13.5-standalone.jar -m blaze.core
+java -jar blaze-0.14.0-standalone.jar -m blaze.core
```
Blaze will run with an in-memory, volatile database for testing and demo purposes.
@@ -17,14 +17,14 @@ Blaze can be run with durable storage by setting the environment variables `STOR
Under Linux/macOS:
```sh
-STORAGE=standalone java -jar blaze-0.13.5-standalone.jar -m blaze.core
+STORAGE=standalone java -jar blaze-0.14.0-standalone.jar -m blaze.core
```
Under Windows, you need to set the Environment variables in the PowerShell before starting Blaze:
```powershell
$Env:STORAGE="standalone"
-java -jar blaze-0.13.5-standalone.jar -m blaze.core
+java -jar blaze-0.14.0-standalone.jar -m blaze.core
```
This will create three directories called `index`, `transaction` and `resource` inside the current working directory, one for each database part used.
@@ -42,7 +42,7 @@ The output should look like this:
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:64] - JVM version: 16.0.2
2021-06-27T11:02:37.834Z ee086ef908c1 main INFO [blaze.core:65] - Maximum available memory: 1738 MiB
2021-06-27T11:02:37.835Z ee086ef908c1 main INFO [blaze.core:66] - Number of available processors: 8
-2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.13.5 in 8.2 seconds
+2021-06-27T11:02:37.836Z ee086ef908c1 main INFO [blaze.core:67] - Successfully started Blaze version 0.14.0 in 8.2 seconds
```
In order to test connectivity, query the health endpoint:
@@ -62,7 +62,7 @@ that should return:
```json
{
"name": "Blaze",
- "version": "0.13.5"
+ "version": "0.14.0"
}
```
diff --git a/modules/rest-api/src/blaze/rest_api/capabilities.clj b/modules/rest-api/src/blaze/rest_api/capabilities.clj
index 87968bedb..55cbab276 100644
--- a/modules/rest-api/src/blaze/rest_api/capabilities.clj
+++ b/modules/rest-api/src/blaze/rest_api/capabilities.clj
@@ -111,7 +111,7 @@
:copyright
#fhir/markdown"Copyright 2019 - 2021 The Samply Community\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
:kind #fhir/code"instance"
- :date #fhir/dateTime"2021-12-02"
+ :date #fhir/dateTime"2021-12-03"
:software
{:name "Blaze"
:version version}
diff --git a/perf-test/gatling/pom.xml b/perf-test/gatling/pom.xml
index 05eab9395..636c77bda 100644
--- a/perf-test/gatling/pom.xml
+++ b/perf-test/gatling/pom.xml
@@ -5,7 +5,7 @@
samply.blaze
gatling
- 0.13.5
+ 0.14.0
1.8
diff --git a/pom.xml b/pom.xml
index 8d38b736f..f83ee2929 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
samply
blaze
- 0.13.5
+ 0.14.0
blaze
A FHIR Store with internal, fast CQL Evaluation Engine
diff --git a/src/blaze/system.clj b/src/blaze/system.clj
index 97120c2d6..67c9b6ffd 100644
--- a/src/blaze/system.clj
+++ b/src/blaze/system.clj
@@ -87,7 +87,7 @@
(def ^:private root-config
- {:blaze/version "0.13.5"
+ {:blaze/version "0.14.0"
:blaze/clock {}