Skip to content

Commit 2ae83fe

Browse files
committed
0.13.7 release
1 parent 836a267 commit 2ae83fe

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tl;dr
55
-----
66

77
* message queue system
8-
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.6.jar)) or embedded
8+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.7.jar)) or embedded
99
* [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface
1010
* fully asynchronous implementation, no blocking calls
1111

@@ -43,18 +43,18 @@ Installation: stand-alone
4343
-------------------------
4444

4545
You can download the stand-alone distribution here:
46-
[https://s3/.../elasticmq-server-0.13.6.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.6.jar)
46+
[https://s3/.../elasticmq-server-0.13.7.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.7.jar)
4747

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

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

52-
java -jar elasticmq-server-0.13.6.jar
52+
java -jar elasticmq-server-0.13.7.jar
5353

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

57-
java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.6.jar
57+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.7.jar
5858

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

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

94-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.6.jar
94+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.7.jar
9595

9696
How are queue URLs created
9797
--------------------------
@@ -197,15 +197,15 @@ ElasticMQ dependencies in SBT
197197
-----------------------------
198198

199199
// Scala 2.12 and 2.11
200-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.6"
200+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.7"
201201

202202
// Scala 2.10
203203
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.7.1"
204204

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

208-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.6"
208+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.7"
209209

210210
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.
211211

@@ -217,7 +217,7 @@ Dependencies:
217217
<dependency>
218218
<groupId>org.elasticmq</groupId>
219219
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
220-
<version>0.13.6</version>
220+
<version>0.13.7</version>
221221
</dependency>
222222

223223
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.
@@ -231,9 +231,9 @@ have been discontinued.
231231
Current versions
232232
----------------
233233

234-
*Stable*: 0.13.6, 0.8.12
234+
*Stable*: 0.13.7, 0.8.12
235235

236-
*Development*: 0.13.6-SNAPSHOT
236+
*Development*: 0.13.7-SNAPSHOT
237237

238238
Logging
239239
-------
@@ -299,6 +299,10 @@ Technology
299299
Change log
300300
----------
301301

302+
### Version 0.13.7 (24 June 2017) ###
303+
304+
* bug fixes
305+
302306
### Version 0.13.6 (22 June 2017) ###
303307

304308
* bug fixes

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import sbtassembly.AssemblyKeys._
55
object BuildSettings {
66
val buildSettings = Defaults.coreDefaultSettings ++ Seq (
77
organization := "org.elasticmq",
8-
version := "0.13.6",
8+
version := "0.13.7",
99
scalaVersion := "2.12.2",
1010
crossScalaVersions := Seq(scalaVersion.value, "2.11.11"),
1111

0 commit comments

Comments
 (0)