Skip to content

Commit d9e2e8c

Browse files
committed
release version 0.2.10
1 parent 1d670f0 commit d9e2e8c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build: ## Build the code using Maven
77
mvn -Pfatjar $(ADDITIONAL_MVN_ARGS) clean javadoc:jar source:jar package $(ADDITIONAL_MVN_TARGETS)
88

99
publish-maven: ## Publish artifacts to Maven Central
10-
ADDITIONAL_MVN_TARGETS=deploy ADDITIONAL_MVN_ARGS=" " make build
10+
ADDITIONAL_MVN_TARGETS=deploy ADDITIONAL_MVN_ARGS="-DskipTests" make build
1111

1212
test-v1:
1313
USE_SSL=1 SERVICES=serverless,kinesis,sns,sqs,iam,cloudwatch mvn -Pawssdkv1 \

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[![Build Status](https://travis-ci.org/localstack/localstack-java-utils.svg)](https://travis-ci.org/localstack/localstack-java-utils)
2+
[![Maven Central](https://img.shields.io/maven-central/v/cloud.localstack/localstack-utils)](https://mvnrepository.com/artifact/cloud.localstack/localstack-utils)
23

34
# LocalStack Java Utils
45

@@ -59,7 +60,7 @@ Simply add the following dependency to your `pom.xml` file:
5960
<dependency>
6061
<groupId>cloud.localstack</groupId>
6162
<artifactId>localstack-utils</artifactId>
62-
<version>0.2.7</version>
63+
<version>0.2.9</version>
6364
</dependency>
6465
```
6566

@@ -107,6 +108,8 @@ make build
107108

108109
## Change Log
109110

111+
* v0.2.10: Add Lambda async utils for AWS SDK v2; add support for specifying bind mounts and init scripts via `@LocalstackDockerProperties`; add PowerMock integration for easy patching of AWS SDK to use local endpoints; add support for configuring the Docker image name via `@LocalstackDockerProperties`; add tests for templated emails
112+
* v0.2.8: Allow overwriting the port binding via environment variables
110113
* v0.2.7: Extend `@LocalstackDockerProperties` to include port binding
111114
* v0.2.6: Add new path to possible docker exe locations in Windows; add various additional tests for v1 and v2 SDKs (Kinesis, SQS, SSM & SecretsManager, ...)
112115
* v0.2.5: Refactor code to accommodate edge port config for all services; add CloudWatch Logs endpoint configuration
@@ -151,7 +154,7 @@ public class PowerMockLocalStackExampleTest extends PowerMockLocalStack{
151154
public void mock() {
152155
PowerMockLocalStack.mockSNS();
153156
}
154-
157+
155158
@Test
156159
public void testSendMessage() throws JMSException {
157160
final AmazonSNS clientSNS = AmazonSNSClientBuilder.defaultClient();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>cloud.localstack</groupId>
66
<artifactId>localstack-utils</artifactId>
77
<packaging>jar</packaging>
8-
<version>0.2.8-SNAPSHOT</version>
8+
<version>0.2.10</version>
99
<name>localstack-utils</name>
1010

1111
<description>Java utilities for the LocalStack platform.</description>

0 commit comments

Comments
 (0)