diff --git a/CHANGELOG.md b/CHANGELOG.md index e49ba68..b7122b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.0 + +2021-06-10 + +- New gates added (Stargate Trailblazers). + ## 0.8.2 2021-04-06 diff --git a/README.md b/README.md index 16e9870..fe4548e 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ docker run \ --env EVE_ROUTE_CLIENT_SECRET=12ab \ --env EVE_ROUTE_CALLBACK=http://localhost:8080/api/auth/login \ --mount type=bind,source="$(pwd)",target=/data \ - -p 8080:8080 --rm tkhamez/eve-route:0.8.2 + -p 8080:8080 --rm tkhamez/eve-route:1.0.0 ``` You can also build the image yourself. For this make sure there is exactly one fat JAR file at @@ -127,7 +127,7 @@ docker run \ --env EVE_ROUTE_CLIENT_SECRET=12ab \ --env EVE_ROUTE_CALLBACK=http://localhost:8080/api/auth/login \ --network host \ - -p 8080:8080 --rm eve-route + --rm eve-route ``` ### Deploy on Heroku @@ -156,7 +156,7 @@ git submodule update --init ### Docker -This was only tested so far on Linux with Docker 19.03 and [Docker Compose](https://docs.docker.com/compose/) 1. +This has only been tested on Linux with Docker 19.03 and [Docker Compose](https://docs.docker.com/compose/) 1. Run the containers: ```shell script diff --git a/build.gradle b/build.gradle index b6c4458..99fc3b0 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'war' apply plugin: 'org.akhikhl.gretty' group 'net.tkhamez.everoute' -version '0.8.2' +version '1.0.0' mainClassName = "io.ktor.server.netty.EngineMain" webAppDirName = 'webapp'