Skip to content

Commit 1d9810e

Browse files
committed
go to 8.0.1 because of publishing mistake and fix examples
1 parent 010b7c7 commit 1d9810e

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ have included this configuration in the repository as a convenience. Also note t
2020
created in IronCore's staging infrastructure.
2121

2222
The following command will get a TSP and LD running together on your computer with the provided configuration.
23-
The `docker-compose` command will pull both container images, then start them up together on a subnetwork, so they can
23+
The `docker compose` command will pull both container images, then start them up together on a subnetwork, so they can
2424
communicate with each other.
2525

2626
```bash
27-
docker-compose -f docker-compose.yml up
27+
docker compose -f docker-compose.yml up
2828
```
2929

3030
The TSP will be listening locally on port 32804.

examples/large-documents/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.ironcorelabs</groupId>
3131
<artifactId>tenant-security-java</artifactId>
32-
<version>4.0.1</version>
32+
<version>8.0.1</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.google.guava</groupId>

examples/logging-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.ironcorelabs</groupId>
3131
<artifactId>tenant-security-java</artifactId>
32-
<version>4.0.0</version>
32+
<version>8.0.1</version>
3333
</dependency>
3434

3535
</dependencies>
@@ -82,4 +82,4 @@
8282
</plugin>
8383
</plugins>
8484
</build>
85-
</project>
85+
</project>

examples/rekey-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.ironcorelabs</groupId>
3030
<artifactId>tenant-security-java</artifactId>
31-
<version>4.1.0</version>
31+
<version>8.0.1</version>
3232
</dependency>
3333
</dependencies>
3434

@@ -80,4 +80,4 @@
8080
</plugin>
8181
</plugins>
8282
</build>
83-
</project>
83+
</project>

examples/simple-roundtrip/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.ironcorelabs</groupId>
3131
<artifactId>tenant-security-java</artifactId>
32-
<version>4.0.0</version>
32+
<version>8.0.1</version>
3333
</dependency>
3434

3535
</dependencies>
@@ -82,4 +82,4 @@
8282
</plugin>
8383
</plugins>
8484
</build>
85-
</project>
85+
</project>

examples/simple-roundtrip/src/main/java/com/ironcorelabs/simple/SimpleRoundtrip.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import com.ironcorelabs.tenantsecurity.kms.v1.*;
44
import com.ironcorelabs.tenantsecurity.kms.v1.exception.TenantSecurityException;
5-
5+
import com.ironcorelabs.tenantsecurity.utils.CompletableFutures;
66
import java.io.IOException;
77
import java.nio.charset.StandardCharsets;
88
import java.nio.file.Files;

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>com.ironcorelabs</groupId>
99
<artifactId>tenant-security-java</artifactId>
1010
<packaging>jar</packaging>
11-
<version>8.0.0</version>
11+
<version>8.0.1</version>
1212
<name>tenant-security-java</name>
1313
<url>https://ironcorelabs.com/docs</url>
1414
<description>Java client library for the IronCore Labs Tenant Security Proxy.</description>
@@ -197,7 +197,7 @@
197197
<include>io.grpc:grpc-context</include>
198198
<include>io.grpc:grpc-api</include>
199199
<include>io.opencensus:opencensus-contrib-http-util</include>
200-
<include>com.fasterxml.jackson.core:jackson-core</include>
200+
<include>com.google.code.gson:gson</include>
201201
</includes>
202202
</artifactSet>
203203
<relocations>

src/main/java/com/ironcorelabs/tenantsecurity/kms/v1/TenantSecurityRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ private static String stripTrailingSlash(String s) {
5959
private final int timeout;
6060

6161
// TSC version that will be sent to the TSP.
62-
static final String sdkVersion = "8.0.0";
62+
static final String sdkVersion = "8.0.1";
6363

6464
TenantSecurityRequest(String tspDomain, String apiKey, int requestThreadSize, int timeout) {
6565
HttpHeaders headers = new HttpHeaders();

0 commit comments

Comments
 (0)