From b9035b4dac0351f79c4605d825dbd1d3d6c9f5c6 Mon Sep 17 00:00:00 2001 From: Max Lambrecht Date: Tue, 27 Oct 2020 10:57:39 -0300 Subject: [PATCH] Bump to 0.6.3 Signed-off-by: Max Lambrecht --- README.md | 20 ++++++++++---------- build.gradle | 2 +- java-spiffe-helper/README.md | 8 ++++---- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 36a2cc4..535c098 100644 --- a/README.md +++ b/README.md @@ -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: io.spiffe java-spiffe-provider - 0.6.2 + 0.6.3 ``` The `java-spiffe-provider` component imports the `java-spiffe-core` component. @@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component: io.spiffe java-spiffe-core - 0.6.2 + 0.6.3 ``` @@ -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`: io.spiffe grpc-netty-macos - 0.6.2 + 0.6.3 runtime ``` 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 diff --git a/build.gradle b/build.gradle index 2c9705a..12de743 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ allprojects { subprojects { group = 'io.spiffe' - version = '0.6.2' + version = '0.6.3' ext { grpcVersion = '1.31.1' diff --git a/java-spiffe-helper/README.md b/java-spiffe-helper/README.md index da977b8..689a911 100644 --- a/java-spiffe-helper/README.md +++ b/java-spiffe-helper/README.md @@ -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 ```