Skip to content

Commit 1616ba7

Browse files
committed
0.13.4 release
1 parent ad9450a commit 1616ba7

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

README.md

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

236-
*Development*: 0.13.3-SNAPSHOT
236+
*Development*: 0.13.4-SNAPSHOT
237237

238238
Logging
239239
-------
@@ -297,7 +297,12 @@ Technology
297297
see the `rest-sqs-testing-amazon-java-sdk` module for the testsuite.
298298

299299
Change log
300-
----------
300+
----------
301+
302+
#### Version 0.13.4 (16 May 2017)
303+
304+
* fix akka dependencies
305+
* properly returned only requrested attributes
301306

302307
#### Version 0.13.3 (5 May 2017)
303308

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.3",
8+
version := "0.13.4",
99
scalaVersion := "2.12.2",
1010
crossScalaVersions := Seq(scalaVersion.value, "2.11.11"),
1111

0 commit comments

Comments
 (0)