Skip to content

Commit 52172ee

Browse files
committed
0.13.2 release
1 parent 7ac923d commit 52172ee

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.1.jar)) or embedded
8+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.2.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.1.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.1.jar)
46+
[https://s3/.../elasticmq-server-0.13.2.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.2.jar)
4747

4848
Java 6 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.1.jar
52+
java -jar elasticmq-server-0.13.2.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.1.jar
57+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.2.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.1.jar
94+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.2.jar
9595

9696
How are queue URLs created
9797
--------------------------
@@ -192,15 +192,15 @@ ElasticMQ dependencies in SBT
192192
-----------------------------
193193

194194
// Scala 2.11
195-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.1"
195+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.2"
196196

197197
// Scala 2.10
198198
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.7.1"
199199

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

203-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.1"
203+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.2"
204204

205205
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.
206206

@@ -212,7 +212,7 @@ Dependencies:
212212
<dependency>
213213
<groupId>org.elasticmq</groupId>
214214
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
215-
<version>0.13.1</version>
215+
<version>0.13.2</version>
216216
</dependency>
217217

218218
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.
@@ -226,9 +226,9 @@ have been discontinued.
226226
Current versions
227227
----------------
228228

229-
*Stable*: 0.13.1, 0.8.12
229+
*Stable*: 0.13.2, 0.8.12
230230

231-
*Development*: 0.13.1-SNAPSHOT
231+
*Development*: 0.13.2-SNAPSHOT
232232

233233
Logging
234234
-------
@@ -294,6 +294,10 @@ Technology
294294
Change log
295295
----------
296296

297+
#### Version 0.13.2 (7 Feb 2017)
298+
299+
* bug fix
300+
297301
#### Version 0.13.1 (26 Jan 2017)
298302

299303
* add dummy add permission endpoint

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.1",
8+
version := "0.13.2",
99
scalaVersion := "2.11.8",
1010
crossScalaVersions := Seq(scalaVersion.value, "2.12.1"),
1111

0 commit comments

Comments
 (0)