Skip to content

Commit 7569cc6

Browse files
committed
0.13.6 release
1 parent 80c935b commit 7569cc6

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
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.5.jar)) or embedded
8+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.6.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.5.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.5.jar)
46+
[https://s3/.../elasticmq-server-0.13.6.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.6.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.5.jar
52+
java -jar elasticmq-server-0.13.6.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.5.jar
57+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.6.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.5.jar
94+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.6.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.5"
200+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.6"
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.5"
208+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.6"
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.5</version>
220+
<version>0.13.6</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.5, 0.8.12
234+
*Stable*: 0.13.6, 0.8.12
235235

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

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

302+
### Version 0.13.6 (22 June 2017) ###
303+
304+
* bug fixes
305+
302306
### Version 0.13.5 (26 May 2017) ###
303307

304308
* bug fixes

project/Build.scala

Lines changed: 4 additions & 4 deletions
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.5",
8+
version := "0.13.6",
99
scalaVersion := "2.12.2",
1010
crossScalaVersions := Seq(scalaVersion.value, "2.11.11"),
1111

@@ -55,12 +55,12 @@ object Dependencies {
5555
val scalatest = "org.scalatest" %% "scalatest" % "3.0.3"
5656
val awaitility = "com.jayway.awaitility" % "awaitility-scala" % "1.7.0"
5757

58-
val amazonJavaSdk = "com.amazonaws" % "aws-java-sdk" % "1.11.129" exclude ("commons-logging", "commons-logging")
58+
val amazonJavaSdk = "com.amazonaws" % "aws-java-sdk" % "1.11.153" exclude ("commons-logging", "commons-logging")
5959

6060
val scalaGraph = "org.scala-graph" %% "graph-core" % "1.11.5"
6161

62-
val akkaVersion = "2.5.1"
63-
val akkaHttpVersion = "10.0.6"
62+
val akkaVersion = "2.5.3"
63+
val akkaHttpVersion = "10.0.8"
6464
val akka2Actor = "com.typesafe.akka" %% "akka-actor" % akkaVersion
6565
val akka2Slf4j = "com.typesafe.akka" %% "akka-slf4j" % akkaVersion
6666
val akka2Streams = "com.typesafe.akka" %% "akka-stream" % akkaVersion

0 commit comments

Comments
 (0)