From 91e104df4e76410ccad017a1ef2e093074a3afa9 Mon Sep 17 00:00:00 2001 From: adamw Date: Wed, 23 Mar 2016 14:06:25 +0100 Subject: [PATCH] 0.9.0 release --- README.md | 20 ++++++++++---------- project/Build.scala | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8e1bae065..4eea34172 100644 --- a/README.md +++ b/README.md @@ -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.8.12.jar)) or embedded +* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.9.0.jar)) or embedded * [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface * fully asynchronous implementation, no blocking calls @@ -40,18 +40,18 @@ Installation: stand-alone ------------------------- You can download the stand-alone distribution here: -[https://s3/.../elasticmq-server-0.8.12.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.8.12.jar) +[https://s3/.../elasticmq-server-0.9.0.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.9.0.jar) Java 6 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.8.12.jar + java -jar elasticmq-server-0.9.0.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.8.12.jar + java -Dconfig.file=custom.conf -jar elasticmq-server-0.9.0.jar The config file may contain any configuration for Akka and ElasticMQ. Current ElasticMQ configuration values are: @@ -84,7 +84,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.8.12.jar + java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.9.0.jar How are queue URLs created -------------------------- @@ -169,7 +169,7 @@ ElasticMQ dependencies in SBT ----------------------------- // Scala 2.11 - val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.8.12" + val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.9.0" // Scala 2.10 val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.7.1" @@ -177,7 +177,7 @@ ElasticMQ dependencies in SBT 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.8.12" + val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.9.0" 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. @@ -189,7 +189,7 @@ Dependencies: org.elasticmq elasticmq-rest-sqs_2.11 - 0.8.12 + 0.9.0 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. @@ -203,9 +203,9 @@ have been discontinued. Current versions ---------------- -*Stable*: 0.8.12 +*Stable*: 0.9.0, 0.8.12 -*Development*: 0.9.0-SNAPSHOT +*Development*: 0.9.1-SNAPSHOT Logging ------- diff --git a/project/Build.scala b/project/Build.scala index 254bcd559..265bfa98f 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -6,7 +6,7 @@ import AssemblyKeys._ object BuildSettings { val buildSettings = Defaults.coreDefaultSettings ++ Seq ( organization := "org.elasticmq", - version := "0.9.0-beta1", + version := "0.9.0", scalaVersion := "2.11.8", libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.5",