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 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` The dependencies can be added to `pom.xml`
@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
<dependency> <dependency>
<groupId>io.spiffe</groupId> <groupId>io.spiffe</groupId>
<artifactId>java-spiffe-provider</artifactId> <artifactId>java-spiffe-provider</artifactId>
<version>0.6.2</version> <version>0.6.3</version>
</dependency> </dependency>
``` ```
The `java-spiffe-provider` component imports the `java-spiffe-core` component. The `java-spiffe-provider` component imports the `java-spiffe-core` component.
@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component:
<dependency> <dependency>
<groupId>io.spiffe</groupId> <groupId>io.spiffe</groupId>
<artifactId>java-spiffe-core</artifactId> <artifactId>java-spiffe-core</artifactId>
<version>0.6.2</version> <version>0.6.3</version>
</dependency> </dependency>
``` ```
@ -53,12 +53,12 @@ Using Gradle:
Import `java-spiffe-provider`: Import `java-spiffe-provider`:
```gradle ```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`: Import `java-spiffe-core`:
```gradle ```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 ### MacOS Support
@ -68,22 +68,22 @@ Add to your `pom.xml`:
<dependency> <dependency>
<groupId>io.spiffe</groupId> <groupId>io.spiffe</groupId>
<artifactId>grpc-netty-macos</artifactId> <artifactId>grpc-netty-macos</artifactId>
<version>0.6.2</version> <version>0.6.3</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency>
``` ```
Using Gradle: Using Gradle:
```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 ### 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, 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 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.2/java-spiffe-helper-0.6.2-linux-x86_64.jar) and [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.2/java-spiffe-helper-0.6.2-osx-x86_64.jar) versions. [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 ### Build the JARs

View File

@ -12,7 +12,7 @@ allprojects {
subprojects { subprojects {
group = 'io.spiffe' group = 'io.spiffe'
version = '0.6.2' version = '0.6.3'
ext { ext {
grpcVersion = '1.31.1' 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: 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: On Mac OS:
`java -jar java-spiffe-helper-0.6.2-osx-x86_64.jar -c helper.conf` `java -jar java-spiffe-helper-0.6.3-osx-x86_64.jar -c helper.conf`
(The jar can be found in `build/libs`, after running the gradle build)
Either `-c` or `--config` should be used to pass the path to the config file. 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 ## Config file
``` ```