Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
Changelog:

- Update dependencies
  • Loading branch information
judu committed Nov 3, 2022
1 parent 1b1d75f commit 2a7b4fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ Add the following to your project:
<dependency>
<groupId>com.clever-cloud</groupId>
<artifactId>testcontainers-warp10</artifactId>
<version>1.0.3</version>
<version>1.0.6</version>
</dependency>
```

### build.gradle

```
implementation 'com.clever-cloud:testcontainers-warp10:1.0.3'
implementation 'com.clever-cloud:testcontainers-warp10:1.0.6'
```

### build.sbt

```scala
libraryDependencies += "com.clever-cloud" % "testcontainers-warp10" % "1.0.3"
libraryDependencies += "com.clever-cloud" % "testcontainers-warp10" % "1.0.6"
```

## Usage example
Expand All @@ -39,7 +39,7 @@ try (Warp10Container container = new Warp10Container(WARP10_VERSION)) {
container.start();

// Do whatever you want with the http client ...
final String query = "['" + container.getReadToken() + "' 'item.temperature' { 'city' 'nantes' } '2021-01-01' TOTIMESTAMP '2021-05-01' TOTIMESTAMP ] FETCH"
final String query = "['" + container.getReadToken() + "' 'item.temperature' { 'city' 'nantes' } '2022-01-01' TOTIMESTAMP '2022-11-06' TOTIMESTAMP ] FETCH"

final HttpClient client = /* Create HTTP Client with host container.getHTTPHostAddress() */

Expand All @@ -50,3 +50,4 @@ try (Warp10Container container = new Warp10Container(WARP10_VERSION)) {
```

(Disclaimer: this code will not compile. It's just so you get an idea!)

10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
<url>https://github.com/CleverCloud/testcontainers-warp10</url>
<groupId>com.clever-cloud</groupId>
<artifactId>testcontainers-warp10</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<testcontainers.version>1.16.0</testcontainers.version>
<jackson.version>2.12.3</jackson.version>
<okhttp3.version>4.9.1</okhttp3.version>
<slf4j.version>1.7.25</slf4j.version>
<testcontainers.version>1.17.5</testcontainers.version>
<jackson.version>2.13.4</jackson.version>
<okhttp3.version>4.9.3</okhttp3.version>
<slf4j.version>2.0.3</slf4j.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 2a7b4fa

Please sign in to comment.