Skip to content

Commit 1cfce68

Browse files
authored
Merge pull request #11 from fabianoo/hotfix/update-integration-test-to-specify-version-compatible-with-python3
Updated integration test to specify version compatible with python 3.…
2 parents a2c1b21 + 84402d2 commit 1cfce68

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ This library is distributed under Apache 2.0 license and it is available as an a
2020
<dependency>
2121
<groupId>xyz.fabiano</groupId>
2222
<artifactId>spring-localstack</artifactId>
23-
<version>0.0.7</version>
23+
<version>0.0.10</version>
2424
</dependency>
2525
```
2626

2727
#### Gradle:
2828
```properties
29-
compile 'xyz.fabiano:spring-localstack:0.0.7'
29+
compile 'xyz.fabiano:spring-localstack:0.0.10'
3030
```
3131

3232

@@ -82,6 +82,11 @@ spring.localstack.async-clients.enabled=true
8282
##
8383
spring.localstack.pull-new-image=true
8484

85+
##
86+
# This tells the application to pull a particular version of Docker image only. Default latest.
87+
##
88+
spring.localstack.version=0.9.2
89+
8590
##
8691
# With this option you can specify which services you want to run with Localstack.
8792
# This makes the Localstack container more lightweight.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>xyz.fabiano</groupId>
55
<artifactId>spring-localstack</artifactId>
66
<packaging>jar</packaging>
7-
<version>0.0.10.dlocal-SNAPSHOT</version>
7+
<version>0.0.10-SNAPSHOT</version>
88
<name>Spring localstack Utilities</name>
99

1010
<description>Java and Spring utilities for the Localstack platform.</description>

src/test/java/xyz/fabiano/spring/localstack/junit/SpringLocalstackDockerRunnerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import static xyz.fabiano.spring.localstack.LocalstackService.*;
4141

4242
@RunWith(SpringLocalstackDockerRunner.class)
43-
@SpringLocalstackProperties(services = {DYNAMO, SQS, KINESIS, S3}, version = "0.9.1", pullNewImage = true)
43+
@SpringLocalstackProperties(services = {DYNAMO, SQS, KINESIS, S3}, version = "0.9.2", pullNewImage = true)
4444
@ContextConfiguration(classes = SpringTestContext.class)
4545
public class SpringLocalstackDockerRunnerTest {
4646

0 commit comments

Comments
 (0)