Skip to content

Commit 750d2e9

Browse files
committed
Setting version to 0.14.13
1 parent 3c28123 commit 750d2e9

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tl;dr
88
-----
99

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

@@ -47,18 +47,18 @@ Installation: stand-alone
4747
-------------------------
4848

4949
You can download the stand-alone distribution here:
50-
[https://s3/.../elasticmq-server-0.14.12.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.14.12.jar)
50+
[https://s3/.../elasticmq-server-0.14.13.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.14.13.jar)
5151

5252
Java 8 or above is required for running the server.
5353

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

56-
java -jar elasticmq-server-0.14.12.jar
56+
java -jar elasticmq-server-0.14.13.jar
5757

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

61-
java -Dconfig.file=custom.conf -jar elasticmq-server-0.14.12.jar
61+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.14.13.jar
6262

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

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

98-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.14.12.jar
98+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.14.13.jar
9999

100100
How are queue URLs created
101101
--------------------------
@@ -254,7 +254,7 @@ Another option is to use custom `Dockerfile`:
254254
FROM openjdk:8-jre-alpine
255255
256256
ARG ELASTICMQ_VERSION
257-
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-0.14.12}
257+
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-0.14.13}
258258
259259
RUN apk add --no-cache curl ca-certificates
260260
RUN mkdir -p /opt/elasticmq/log /opt/elasticmq/lib /opt/elasticmq/config
@@ -287,12 +287,12 @@ ElasticMQ dependencies in SBT
287287
-----------------------------
288288

289289
// Scala 2.12 and 2.11
290-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.14.12"
290+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.14.13"
291291

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

295-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.14.12"
295+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.14.13"
296296

297297
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.
298298

@@ -304,17 +304,17 @@ Dependencies:
304304
<dependency>
305305
<groupId>org.elasticmq</groupId>
306306
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
307-
<version>0.14.12</version>
307+
<version>0.14.13</version>
308308
</dependency>
309309

310310
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.
311311

312312
Current versions
313313
----------------
314314

315-
*Stable*: 0.14.12, 0.8.12
315+
*Stable*: 0.14.13, 0.8.12
316316

317-
*Development*: 0.14.12-SNAPSHOT
317+
*Development*: 0.14.13-SNAPSHOT
318318

319319
Logging
320320
-------

version.sbt

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

0 commit comments

Comments
 (0)