Skip to content

Commit

Permalink
Setting version to 0.13.10
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed May 16, 2018
1 parent 21da4ab commit f42b89a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -5,7 +5,7 @@ tl;dr
-----

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

Expand Down Expand Up @@ -43,18 +43,18 @@ Installation: stand-alone
-------------------------

You can download the stand-alone distribution here:
[https://s3/.../elasticmq-server-0.13.9.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.9.jar)
[https://s3/.../elasticmq-server-0.13.10.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.13.10.jar)

Java 8 or above is required for running the server.

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

java -jar elasticmq-server-0.13.9.jar
java -jar elasticmq-server-0.13.10.jar

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

java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.9.jar
java -Dconfig.file=custom.conf -jar elasticmq-server-0.13.10.jar

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

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

java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.9.jar
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.13.10.jar

How are queue URLs created
--------------------------
Expand Down Expand Up @@ -204,12 +204,12 @@ ElasticMQ dependencies in SBT
-----------------------------

// Scala 2.12 and 2.11
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.9"
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.10"

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

val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.9"
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.13.10"

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.

Expand All @@ -221,7 +221,7 @@ Dependencies:
<dependency>
<groupId>org.elasticmq</groupId>
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
<version>0.13.9</version>
<version>0.13.10</version>
</dependency>

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.
Expand All @@ -235,9 +235,9 @@ have been discontinued.
Current versions
----------------

*Stable*: 0.13.9, 0.8.12
*Stable*: 0.13.10, 0.8.12

*Development*: 0.13.9-SNAPSHOT
*Development*: 0.13.10-SNAPSHOT

Logging
-------
Expand Down Expand Up @@ -330,11 +330,11 @@ Technology
Change log
----------

### Version 0.13.9 (13 March 2018) ###
### Version 0.13.10 (13 March 2018) ###

* bug fixes

### Version 0.13.9 (25 June 2017) ###
### Version 0.13.10 (25 June 2017) ###

* bug fixes

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
@@ -1 +1 @@
version in ThisBuild := "0.13.10-SNAPSHOT"
version in ThisBuild := "0.13.10"

0 comments on commit f42b89a

Please sign in to comment.