Skip to content

Commit 5e16f7a

Browse files
author
Max Lambrecht
authored
Bump library version to 0.8.2 (#113)
Signed-off-by: Max Lambrecht <[email protected]>
1 parent f9dc354 commit 5e16f7a

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ X.509 and JWT SVIDs and bundles.
2626
Download
2727
--------
2828

29-
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.1).
29+
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.2).
3030

3131
The dependencies can be added to `pom.xml`
3232

@@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
3535
<dependency>
3636
<groupId>io.spiffe</groupId>
3737
<artifactId>java-spiffe-provider</artifactId>
38-
<version>0.8.1</version>
38+
<version>0.8.2</version>
3939
</dependency>
4040
```
4141
The `java-spiffe-provider` component imports the `java-spiffe-core` component.
@@ -45,20 +45,20 @@ To just import the `java-spiffe-core` component:
4545
<dependency>
4646
<groupId>io.spiffe</groupId>
4747
<artifactId>java-spiffe-core</artifactId>
48-
<version>0.8.1</version>
48+
<version>0.8.2</version>
4949
</dependency>
5050
```
5151

5252
Using Gradle:
5353

5454
Import `java-spiffe-provider`:
5555
```gradle
56-
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.1'
56+
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.2'
5757
```
5858

5959
Import `java-spiffe-core`:
6060
```gradle
61-
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.1'
61+
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.2'
6262
```
6363

6464
### MacOS Support
@@ -72,14 +72,14 @@ In case run on a osx-x86 architecture, add to your `pom.xml`:
7272
<dependency>
7373
<groupId>io.spiffe</groupId>
7474
<artifactId>grpc-netty-macos</artifactId>
75-
<version>0.8.1</version>
75+
<version>0.8.2</version>
7676
<scope>runtime</scope>
7777
</dependency>
7878
```
7979

8080
Using Gradle:
8181
```gradle
82-
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.1'
82+
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.2'
8383
```
8484

8585
#### Aarch64 (M1) Architecture
@@ -91,15 +91,15 @@ If you are running the aarch64 architecture (M1 CPUs), add to your `pom.xml`:
9191
<dependency>
9292
<groupId>io.spiffe</groupId>
9393
<artifactId>grpc-netty-macos-aarch64</artifactId>
94-
<version>0.8.1</version>
94+
<version>0.8.2</version>
9595
<scope>runtime</scope>
9696
</dependency>
9797
```
9898

9999
Using Gradle:
100100

101101
```gradle
102-
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.1'
102+
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.2'
103103
```
104104

105105
*Caveat: not all OpenJDK distributions are aarch64 native, make sure your JDK is also running
@@ -108,9 +108,9 @@ natively*
108108
### Note: `java-spiffe-helper` artifact
109109

110110
As the [java-spiffe-helper](java-spiffe-helper/README.md) artifact is meant to be used as a standalone JAR and not as a Maven dependency,
111-
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.8.1), for both
112-
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.8.1/java-spiffe-helper-0.8.1-linux-x86_64.jar) and
113-
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.8.1/java-spiffe-helper-0.8.1-osx-x86_64.jar) versions.
111+
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.8.2), for both
112+
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.8.2/java-spiffe-helper-0.8.2-linux-x86_64.jar) and
113+
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.8.2/java-spiffe-helper-0.8.2-osx-x86_64.jar) versions.
114114

115115
### Build the JARs
116116

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ allprojects {
1212

1313
subprojects {
1414
group = 'io.spiffe'
15-
version = '0.8.1'
15+
version = '0.8.2'
1616

1717
ext {
1818
grpcVersion = '1.51.1'

0 commit comments

Comments
 (0)