Skip to content

Commit 53c7e2d

Browse files
committed
Setting version to 0.15.8
1 parent 87a88d5 commit 53c7e2d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# tl;dr
77

88
* in-memory message queue system
9-
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.7.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
9+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.8.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
1010
* [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface
1111
* fully asynchronous implementation, no blocking calls
1212

@@ -42,18 +42,18 @@ The future will most probably bring even more exciting features :).
4242
# Installation: stand-alone
4343

4444
You can download the stand-alone distribution here:
45-
[https://s3/.../elasticmq-server-0.15.7.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.7.jar)
45+
[https://s3/.../elasticmq-server-0.15.8.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.8.jar)
4646

4747
Java 8 or above is required for running the server.
4848

4949
Simply run the jar and you should get a working server, which binds to `localhost:9324`:
5050

51-
java -jar elasticmq-server-0.15.7.jar
51+
java -jar elasticmq-server-0.15.8.jar
5252

5353
ElasticMQ uses [Typesafe Config](https://github.com/typesafehub/config) for configuration. To specify custom
5454
configuration values, create a file (e.g. `custom.conf`), fill it in with the desired values, and pass it to the server:
5555

56-
java -Dconfig.file=custom.conf -jar elasticmq-server-0.15.7.jar
56+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.15.8.jar
5757

5858
The config file may contain any configuration for Akka and ElasticMQ. Current ElasticMQ configuration values are:
5959

@@ -96,7 +96,7 @@ You can also provide an alternative [Logback](http://logback.qos.ch/) configurat
9696
[default](server/src/main/resources/logback.xml) is configured to
9797
log INFO logs and above to the console):
9898

99-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.15.7.jar
99+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.15.8.jar
100100

101101
# How are queue URLs created
102102

@@ -251,7 +251,7 @@ Another option is to use custom `Dockerfile`:
251251
FROM openjdk:8-jre-alpine
252252
253253
ARG ELASTICMQ_VERSION
254-
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-0.15.7}
254+
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-0.15.8}
255255
256256
RUN apk add --no-cache curl ca-certificates
257257
RUN mkdir -p /opt/elasticmq/log /opt/elasticmq/lib /opt/elasticmq/config
@@ -299,12 +299,12 @@ These files should be placed in `native-server/src/main/resources/META-INF/nativ
299299
# ElasticMQ dependencies in SBT
300300

301301
// Scala 2.13 and 2.12
302-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.15.7"
302+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.15.8"
303303

304304
If you don't want the SQS interface, but just use the actors directly, you can add a dependency only to the `core`
305305
module:
306306

307-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.15.7"
307+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.15.8"
308308

309309
If you want to use a snapshot version, you will need to add the [https://oss.sonatype.org/content/repositories/snapshots/](https://oss.sonatype.org/content/repositories/snapshots/) repository to your configuration.
310310

@@ -315,14 +315,14 @@ Dependencies:
315315
<dependency>
316316
<groupId>org.elasticmq</groupId>
317317
<artifactId>elasticmq-rest-sqs_2.12</artifactId>
318-
<version>0.15.7</version>
318+
<version>0.15.8</version>
319319
</dependency>
320320

321321
If you want to use a snapshot version, you will need to add the [https://oss.sonatype.org/content/repositories/snapshots/](https://oss.sonatype.org/content/repositories/snapshots/) repository to your configuration.
322322

323323
# Current versions
324324

325-
*Stable*: 0.15.7
325+
*Stable*: 0.15.8
326326

327327
# Logging
328328

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.15.7-SNAPSHOT"
1+
version in ThisBuild := "0.15.8"

0 commit comments

Comments
 (0)