Skip to content

Commit b935687

Browse files
committed
0.11.1 release
1 parent f2ec5ce commit b935687

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
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.11.0.jar)) or embedded
8+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.11.1.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.11.0.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.11.0.jar)
46+
[https://s3/.../elasticmq-server-0.11.1.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.11.1.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.11.0.jar
52+
java -jar elasticmq-server-0.11.1.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.11.0.jar
57+
java -Dconfig.file=custom.conf -jar elasticmq-server-0.11.1.jar
5858

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

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

90-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.11.0.jar
90+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.11.1.jar
9191

9292
How are queue URLs created
9393
--------------------------
@@ -182,15 +182,15 @@ ElasticMQ dependencies in SBT
182182
-----------------------------
183183

184184
// Scala 2.11
185-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.11.0"
185+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.11.1"
186186

187187
// Scala 2.10
188188
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.7.1"
189189

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

193-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.11.0"
193+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.11.1"
194194

195195
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.
196196

@@ -202,7 +202,7 @@ Dependencies:
202202
<dependency>
203203
<groupId>org.elasticmq</groupId>
204204
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
205-
<version>0.11.0</version>
205+
<version>0.11.1</version>
206206
</dependency>
207207

208208
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.
@@ -216,9 +216,9 @@ have been discontinued.
216216
Current versions
217217
----------------
218218

219-
*Stable*: 0.11.0, 0.8.12
219+
*Stable*: 0.11.1, 0.8.12
220220

221-
*Development*: 0.11.0-SNAPSHOT
221+
*Development*: 0.11.1-SNAPSHOT
222222

223223
Logging
224224
-------
@@ -284,6 +284,10 @@ Technology
284284
Change log
285285
----------
286286

287+
#### Version 0.11.1 (30 Nov 2016)
288+
289+
* bug fix
290+
287291
#### Version 0.11.0 (23 Nov 2016)
288292

289293
* updating dependencies, using Akka HTTP 10, builds for Scala 2.11 and 2.12

project/Build.scala

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import sbt._
22
import Keys._
3-
import sbtassembly.Plugin._
4-
import AssemblyKeys._
3+
import sbtassembly.AssemblyKeys._
54

65
object BuildSettings {
76
val buildSettings = Defaults.coreDefaultSettings ++ Seq (
87
organization := "org.elasticmq",
9-
version := "0.11.0",
8+
version := "0.11.1",
109
scalaVersion := "2.11.8",
1110
crossScalaVersions := Seq(scalaVersion.value, "2.12.0"),
1211

@@ -117,7 +116,7 @@ object ElasticMQBuild extends Build {
117116
lazy val server: Project = Project(
118117
"elasticmq-server",
119118
file("server"),
120-
settings = buildSettings ++ CustomTasks.generateVersionFileSettings ++ assemblySettings ++ Seq(
119+
settings = buildSettings ++ CustomTasks.generateVersionFileSettings ++ Seq(
121120
libraryDependencies ++= Seq(logback, config),
122121
mainClass in assembly := Some("org.elasticmq.server.Main")
123122
)

project/plugins.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2")
1+
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.3")
22

33
addSbtPlugin("com.gu" % "sbt-teamcity-test-reporting-plugin" % "1.5")
44

5-
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.0.1")
6-
75
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")

0 commit comments

Comments
 (0)