Skip to content

Commit 4d8330f

Browse files
committed
Setting version to 1.0.0
1 parent 776e584 commit 4d8330f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# tl;dr
88

99
* in-memory message queue system
10-
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.8.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
10+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.0.0.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
1111
* [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface
1212
* fully asynchronous implementation, no blocking calls
1313
* created and maintained by:
@@ -43,18 +43,18 @@ A simple UI is available for viewing real-time queue statistics.
4343
# Installation: stand-alone
4444

4545
You can download the stand-alone distribution here:
46-
[https://s3/.../elasticmq-server-0.15.8.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.8.jar)
46+
[https://s3/.../elasticmq-server-1.0.0.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.0.0.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.15.8.jar
52+
java -jar elasticmq-server-1.0.0.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.15.8.jar
57+
java -Dconfig.file=custom.conf -jar elasticmq-server-1.0.0.jar
5858

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

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

106-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.15.8.jar
106+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-1.0.0.jar
107107

108108
# How are queue URLs created
109109

@@ -276,7 +276,7 @@ Another option is to use custom `Dockerfile`:
276276
FROM openjdk:8-jre-alpine
277277
278278
ARG ELASTICMQ_VERSION
279-
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-0.15.8}
279+
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-1.0.0}
280280
281281
RUN apk add --no-cache curl ca-certificates
282282
RUN mkdir -p /opt/elasticmq/log /opt/elasticmq/lib /opt/elasticmq/config
@@ -296,12 +296,12 @@ and override the entrypoint passing the required properties.
296296
# ElasticMQ dependencies in SBT
297297

298298
// Scala 2.13 and 2.12
299-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.15.8"
299+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "1.0.0"
300300

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

304-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.15.8"
304+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "1.0.0"
305305

306306
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.
307307

@@ -312,14 +312,14 @@ Dependencies:
312312
<dependency>
313313
<groupId>org.elasticmq</groupId>
314314
<artifactId>elasticmq-rest-sqs_2.12</artifactId>
315-
<version>0.15.8</version>
315+
<version>1.0.0</version>
316316
</dependency>
317317

318318
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.
319319

320320
# Current versions
321321

322-
*Stable*: 0.15.8
322+
*Stable*: 1.0.0
323323

324324
# Logging
325325

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.15.8"
1+
version in ThisBuild := "1.0.0"

0 commit comments

Comments
 (0)