From a1a3eb692f3ff7db3342f4b3ba203a067c5eed40 Mon Sep 17 00:00:00 2001 From: Tad Cordle Date: Tue, 5 Mar 2019 15:36:32 -0500 Subject: [PATCH] Update version strings for 1.0.2 (#1533) --- CONTRIBUTING.md | 4 ++-- examples/dropwizard/pom.xml | 2 +- examples/helloworld/build.gradle | 2 +- examples/helloworld/pom.xml | 2 +- examples/java-agent/build.gradle | 2 +- examples/java-agent/pom.xml | 2 +- examples/ktor/build.gradle.kts | 2 +- examples/micronaut/build.gradle | 2 +- examples/multi-module/build.gradle | 2 +- examples/multi-module/pom.xml | 2 +- examples/spring-boot-draft/build.gradle | 2 +- examples/spring-boot-draft/pom.xml | 2 +- examples/spring-boot-kubernetes/build.gradle | 2 +- examples/spring-boot-kubernetes/pom.xml | 2 +- examples/vertx/build.gradle | 2 +- jib-gradle-plugin/CHANGELOG.md | 10 ++++++++-- jib-gradle-plugin/README.md | 2 +- jib-maven-plugin/CHANGELOG.md | 10 ++++++++-- jib-maven-plugin/README.md | 6 +++--- 19 files changed, 36 insertions(+), 24 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d16af1e302..2b0694e7aa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -91,12 +91,12 @@ To use a local build of the `jib-gradle-plugin`: mavenCentral() } dependencies { - classpath 'com.google.cloud.tools:jib-gradle-plugin:1.0.2-SNAPSHOT' + classpath 'com.google.cloud.tools:jib-gradle-plugin:1.0.3-SNAPSHOT' } } plugins { - // id 'com.google.cloud.tools.jib' version '1.0.1' + // id 'com.google.cloud.tools.jib' version '1.0.2' } // Applies the java plugin after Jib to make sure it works in this order. diff --git a/examples/dropwizard/pom.xml b/examples/dropwizard/pom.xml index bdbaf761c0..f49cfc093d 100644 --- a/examples/dropwizard/pom.xml +++ b/examples/dropwizard/pom.xml @@ -26,7 +26,7 @@ 1.5.0 /app - 1.0.1 + 1.0.2 diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle index 82fff3bdf9..39ffac5c54 100644 --- a/examples/helloworld/build.gradle +++ b/examples/helloworld/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } sourceCompatibility = 1.8 diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml index df471f88f2..19d141bc41 100644 --- a/examples/helloworld/pom.xml +++ b/examples/helloworld/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 1.0.1 + 1.0.2 3.8.0 diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle index 03e4a30210..03342b393d 100644 --- a/examples/java-agent/build.gradle +++ b/examples/java-agent/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' id 'de.undercouch.download' version '3.4.0' id "com.gorylenko.gradle-git-properties" version "1.5.2" } diff --git a/examples/java-agent/pom.xml b/examples/java-agent/pom.xml index afea86b688..af6cffec44 100644 --- a/examples/java-agent/pom.xml +++ b/examples/java-agent/pom.xml @@ -9,7 +9,7 @@ UTF-8 - 1.0.1 + 1.0.2 3.8.0 1.4.1 2.2.5 diff --git a/examples/ktor/build.gradle.kts b/examples/ktor/build.gradle.kts index 1d9ffe0c59..577c069bb6 100644 --- a/examples/ktor/build.gradle.kts +++ b/examples/ktor/build.gradle.kts @@ -1,7 +1,7 @@ plugins { application kotlin("jvm") version "1.3.10" - id("com.google.cloud.tools.jib") version "1.0.1" + id("com.google.cloud.tools.jib") version "1.0.2" } group = "example" diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle index da5537f621..32a732ec83 100644 --- a/examples/micronaut/build.gradle +++ b/examples/micronaut/build.gradle @@ -3,7 +3,7 @@ plugins { id 'groovy' id 'io.spring.dependency-management' version '1.0.6.RELEASE' id 'net.ltgt.apt-idea' version '0.18' - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } version '0.1' diff --git a/examples/multi-module/build.gradle b/examples/multi-module/build.gradle index a172dde78f..6074dca10f 100644 --- a/examples/multi-module/build.gradle +++ b/examples/multi-module/build.gradle @@ -8,7 +8,7 @@ buildscript { dependencies { classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE' classpath 'io.spring.gradle:dependency-management-plugin:1.0.6.RELEASE' - classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.0.1' + classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.0.2' } } diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml index 1aa4d05333..364d85d8bd 100644 --- a/examples/multi-module/pom.xml +++ b/examples/multi-module/pom.xml @@ -40,7 +40,7 @@ com.google.cloud.tools jib-maven-plugin - 1.0.1 + 1.0.2 diff --git a/examples/spring-boot-draft/build.gradle b/examples/spring-boot-draft/build.gradle index 3a3f1434ab..fa00e826fb 100644 --- a/examples/spring-boot-draft/build.gradle +++ b/examples/spring-boot-draft/build.gradle @@ -10,7 +10,7 @@ buildscript { } } plugins { - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } apply plugin: 'java' diff --git a/examples/spring-boot-draft/pom.xml b/examples/spring-boot-draft/pom.xml index 723aa862dd..2a88f93962 100644 --- a/examples/spring-boot-draft/pom.xml +++ b/examples/spring-boot-draft/pom.xml @@ -22,7 +22,7 @@ UTF-8 UTF-8 1.8 - 1.0.1 + 1.0.2 diff --git a/examples/spring-boot-kubernetes/build.gradle b/examples/spring-boot-kubernetes/build.gradle index 9754881320..894c036993 100644 --- a/examples/spring-boot-kubernetes/build.gradle +++ b/examples/spring-boot-kubernetes/build.gradle @@ -4,7 +4,7 @@ plugins { id 'idea' id 'org.springframework.boot' version '2.0.4.RELEASE' id 'io.spring.dependency-management' version '1.0.6.RELEASE' - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } repositories { diff --git a/examples/spring-boot-kubernetes/pom.xml b/examples/spring-boot-kubernetes/pom.xml index cf531c0e5b..3054eb98a8 100644 --- a/examples/spring-boot-kubernetes/pom.xml +++ b/examples/spring-boot-kubernetes/pom.xml @@ -29,7 +29,7 @@ com.google.cloud.tools jib-maven-plugin - 1.0.1 + 1.0.2 diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle index 273ae68d05..cfeec32082 100644 --- a/examples/vertx/build.gradle +++ b/examples/vertx/build.gradle @@ -1,6 +1,6 @@ plugins { id 'io.vertx.vertx-plugin' version '0.1.0' - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } repositories { diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md index 6fd8b07149..26263e6678 100644 --- a/jib-gradle-plugin/CHANGELOG.md +++ b/jib-gradle-plugin/CHANGELOG.md @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file. ### Added +### Changed + +### Fixed + +## 1.0.2 + +### Added + - Java 9+ WAR projects are now supported and run on the distroless Jetty Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Jetty Java 8 image. ([#1510](https://github.com/GoogleContainerTools/jib/issues/1510)) - Now supports authentication against Azure Container Registry using `docker-credential-acr-*` credential helpers. ([#1490](https://github.com/GoogleContainerTools/jib/issues/1490)) -### Changed - ### Fixed - Fixed an issue where setting `allowInsecureRegistries` may fail to try HTTP. ([#1517](https://github.com/GoogleContainerTools/jib/issues/1517)) diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md index 0ae8317ad6..adfc7fa5a4 100644 --- a/jib-gradle-plugin/README.md +++ b/jib-gradle-plugin/README.md @@ -43,7 +43,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`: ```groovy plugins { - id 'com.google.cloud.tools.jib' version '1.0.1' + id 'com.google.cloud.tools.jib' version '1.0.2' } ``` diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md index db4a04c26e..fa9fabb9e2 100644 --- a/jib-maven-plugin/CHANGELOG.md +++ b/jib-maven-plugin/CHANGELOG.md @@ -5,12 +5,18 @@ All notable changes to this project will be documented in this file. ### Added +### Changed + +### Fixed + +## 1.0.2 + +### Added + - Java 9+ WAR projects are now supported and run on the distroless Jetty Java 11 image (https://github.com/GoogleContainerTools/distroless) by default. Java 8 projects remain on the distroless Jetty Java 8 image. ([#1510](https://github.com/GoogleContainerTools/jib/issues/1510)) - Now supports authentication against Azure Container Registry using `docker-credential-acr-*` credential helpers. ([#1490](https://github.com/GoogleContainerTools/jib/issues/1490)) - Batch mode now disables build progress bar. ([#1513](https://github.com/GoogleContainerTools/jib/issues/1513)) -### Changed - ### Fixed - Fixed an issue where setting `` may fail to try HTTP. ([#1517](https://github.com/GoogleContainerTools/jib/issues/1517)) diff --git a/jib-maven-plugin/README.md b/jib-maven-plugin/README.md index 37e2360b07..f990ebf22a 100644 --- a/jib-maven-plugin/README.md +++ b/jib-maven-plugin/README.md @@ -38,7 +38,7 @@ For information about the project, see the [Jib project README](../README.md). You can containerize your application easily with one command: ```shell -mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.1:build -Dimage= +mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.2:build -Dimage= ``` This builds and pushes a container image for your application to a container registry. *If you encounter authentication issues, see [Authentication Methods](#authentication-methods).* @@ -46,7 +46,7 @@ This builds and pushes a container image for your application to a container reg To build to a Docker daemon, use: ```shell -mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.1:dockerBuild +mvn compile com.google.cloud.tools:jib-maven-plugin:1.0.2:dockerBuild ``` If you would like to set up Jib as part of your Maven build, follow the guide below. @@ -64,7 +64,7 @@ In your Maven Java project, add the plugin to your `pom.xml`: com.google.cloud.tools jib-maven-plugin - 1.0.1 + 1.0.2 myimage