Bump to 0.6.3

Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
This commit is contained in:
Max Lambrecht 2020-10-27 10:57:39 -03:00
parent b94d8da155
commit b9035b4dac
3 changed files with 15 additions and 15 deletions

View File

@ -26,7 +26,7 @@ X.509 and JWT SVIDs and bundles.
Download
--------
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.6.2).
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.6.3).
The dependencies can be added to `pom.xml`
@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>java-spiffe-provider</artifactId>
<version>0.6.2</version>
<version>0.6.3</version>
</dependency>
```
The `java-spiffe-provider` component imports the `java-spiffe-core` component.
@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>java-spiffe-core</artifactId>
<version>0.6.2</version>
<version>0.6.3</version>
</dependency>
```
@ -53,12 +53,12 @@ Using Gradle:
Import `java-spiffe-provider`:
```gradle
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.6.2'
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.6.3'
```
Import `java-spiffe-core`:
```gradle
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.6.2'
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.6.3'
```
### MacOS Support
@ -68,22 +68,22 @@ Add to your `pom.xml`:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>grpc-netty-macos</artifactId>
<version>0.6.2</version>
<version>0.6.3</version>
<scope>runtime</scope>
</dependency>
```
Using Gradle:
```gradle
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.6.2'
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.6.3'
```
### Note: `java-spiffe-helper` artifact
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,
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.6.2), for both
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.6.2/java-spiffe-helper-0.6.2-linux-x86_64.jar) and
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.6.2/java-spiffe-helper-0.6.2-osx-x86_64.jar) versions.
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.6.3), for both
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.6.3/java-spiffe-helper-0.6.3-linux-x86_64.jar) and
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.6.3/java-spiffe-helper-0.6.3-osx-x86_64.jar) versions.
### Build the JARs

View File

@ -12,7 +12,7 @@ allprojects {
subprojects {
group = 'io.spiffe'
version = '0.6.2'
version = '0.6.3'
ext {
grpcVersion = '1.31.1'

View File

@ -10,16 +10,16 @@ The Helper automatically gets the SVID updates and stores them in the KeyStore a
On Linux:
`java -jar java-spiffe-helper-0.6.2-linux-x86_64.jar -c helper.conf`
`java -jar java-spiffe-helper-0.6.3-linux-x86_64.jar -c helper.conf`
On Mac OS:
`java -jar java-spiffe-helper-0.6.2-osx-x86_64.jar -c helper.conf`
(The jar can be found in `build/libs`, after running the gradle build)
`java -jar java-spiffe-helper-0.6.3-osx-x86_64.jar -c helper.conf`
Either `-c` or `--config` should be used to pass the path to the config file.
(The jar can be downloaded from [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.6.3))
## Config file
```