Skip to content

Commit

Permalink
Release v0.8.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed May 6, 2020
1 parent 9093847 commit 31f7757
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.8.0-beta.1"
VERSION = "0.8.0-beta.2"

check:
clojure -A:check
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0-beta.1][5]
Latest release: [v0.8.0-beta.2][5]

## Quick Start

Expand All @@ -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 samply/blaze:0.8.0-beta.1
docker run -p 8080:8080 samply/blaze:0.8.0-beta.2
```

### Java

```bash
wget https://github.com/samply/blaze/releases/download/v0.8.0-beta.1/blaze-0.8.0-beta.1-standalone.jar
java -jar blaze-0.8.0-beta.1-standalone.jar -m blaze.core
wget https://github.com/samply/blaze/releases/download/v0.8.0-beta.2/blaze-0.8.0-beta.2-standalone.jar
java -jar blaze-0.8.0-beta.2-standalone.jar -m blaze.core
```

Logging output should appear which prints the most important settings and system parameters like Java version and available memory.
Expand Down Expand Up @@ -124,7 +124,7 @@ Unless required by applicable law or agreed to in writing, software distributed

[3]: <https://cql.hl7.org/tests.html>
[4]: <https://alexanderkiel.gitbook.io/blaze/deployment>
[5]: <https://github.com/samply/blaze/releases/tag/v0.8.0-beta.1>
[5]: <https://github.com/samply/blaze/releases/tag/v0.8.0-beta.2>
[6]: <https://www.yourkit.com/java/profiler/>
[7]: <https://www.yourkit.com/.net/profiler/>
[8]: <https://www.yourkit.com/youmonitor/>
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.2'
services:
store:
image: "samply/blaze:0.8.0-beta.1"
image: "samply/blaze:0.8.0-beta.2"
environment:
BASE_URL: "http://localhost:8080"
DB_DIR: "/data"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>samply</groupId>
<artifactId>blaze</artifactId>
<version>0.8.0-beta.1</version>
<version>0.8.0-beta.2</version>
<name>blaze</name>

<description>A FHIR Store with internal, fast CQL Evaluation Engine</description>
Expand Down
2 changes: 1 addition & 1 deletion src/blaze/system.clj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@


(def ^:private root-config
{:blaze/version "0.8.0-beta.1"
{:blaze/version "0.8.0-beta.2"

:blaze/structure-definition {}

Expand Down

0 comments on commit 31f7757

Please sign in to comment.