diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 554cdcee26..4520db8829 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -122,8 +122,8 @@ To use a local build of the `jib-gradle-plugin`:
1. Modify your test project's `build.gradle` to use the snapshot version
```groovy
plugins {
- // id 'com.google.cloud.tools.jib' version '2.2.0'
- id 'com.google.cloud.tools.jib' version '2.2.1-SNAPSHOT'
+ // id 'com.google.cloud.tools.jib' version '2.3.0'
+ id 'com.google.cloud.tools.jib' version '2.3.1-SNAPSHOT'
}
```
diff --git a/examples/dropwizard/pom.xml b/examples/dropwizard/pom.xml
index 8b469863b4..43769b73c9 100644
--- a/examples/dropwizard/pom.xml
+++ b/examples/dropwizard/pom.xml
@@ -26,7 +26,7 @@
1.5.0
/app
- 2.2.0
+ 2.3.0
diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle
index c6a0cfc38a..0775fec800 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 '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
}
sourceCompatibility = 1.8
diff --git a/examples/helloworld/pom.xml b/examples/helloworld/pom.xml
index 9d22da188c..4b59f1e6ff 100644
--- a/examples/helloworld/pom.xml
+++ b/examples/helloworld/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 2.2.0
+ 2.3.0
3.8.0
diff --git a/examples/java-agent/build.gradle b/examples/java-agent/build.gradle
index c61e2fe7c4..2238dc3e39 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 '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
id 'de.undercouch.download' version '4.0.0'
id "com.gorylenko.gradle-git-properties" version "2.2.0"
}
diff --git a/examples/java-agent/pom.xml b/examples/java-agent/pom.xml
index a679b9f870..6a60e0a661 100644
--- a/examples/java-agent/pom.xml
+++ b/examples/java-agent/pom.xml
@@ -9,7 +9,7 @@
UTF-8
- 2.2.0
+ 2.3.0
3.8.0
1.4.2
3.0.1
diff --git a/examples/ktor/build.gradle.kts b/examples/ktor/build.gradle.kts
index e85efa543a..b98c4a8ca9 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 "2.2.0"
+ id("com.google.cloud.tools.jib") version "2.3.0"
}
group = "example"
diff --git a/examples/micronaut/build.gradle b/examples/micronaut/build.gradle
index a88b4f1669..9e6a2a08f2 100644
--- a/examples/micronaut/build.gradle
+++ b/examples/micronaut/build.gradle
@@ -2,7 +2,7 @@ plugins {
id "groovy"
id "com.github.johnrengelman.shadow" version "5.2.0"
id "application"
- id 'com.google.cloud.tools.jib' version '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
}
version "0.1"
@@ -52,4 +52,4 @@ shadowJar {
tasks.withType(JavaExec) {
classpath += configurations.developmentOnly
jvmArgs('-XX:TieredStopAtLevel=1', '-Dcom.sun.management.jmxremote')
-}
\ No newline at end of file
+}
diff --git a/examples/multi-module/pom.xml b/examples/multi-module/pom.xml
index 988ae07ec7..cfe1ae512b 100644
--- a/examples/multi-module/pom.xml
+++ b/examples/multi-module/pom.xml
@@ -41,7 +41,7 @@
com.google.cloud.tools
jib-maven-plugin
- 2.2.0
+ 2.3.0
diff --git a/examples/spring-boot/build.gradle b/examples/spring-boot/build.gradle
index fc3ec1ee16..99e84fb49e 100644
--- a/examples/spring-boot/build.gradle
+++ b/examples/spring-boot/build.gradle
@@ -4,7 +4,7 @@ plugins {
id 'idea'
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
- id 'com.google.cloud.tools.jib' version '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
}
repositories {
diff --git a/examples/spring-boot/pom.xml b/examples/spring-boot/pom.xml
index e11bea8eb2..f60a53ec2d 100644
--- a/examples/spring-boot/pom.xml
+++ b/examples/spring-boot/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud.tools
jib-maven-plugin
- 2.2.0
+ 2.3.0
diff --git a/examples/vertx/build.gradle b/examples/vertx/build.gradle
index 99477026c5..fecb82693b 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 '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
}
repositories {
diff --git a/jib-gradle-plugin/CHANGELOG.md b/jib-gradle-plugin/CHANGELOG.md
index cb786e0a60..1afd02de04 100644
--- a/jib-gradle-plugin/CHANGELOG.md
+++ b/jib-gradle-plugin/CHANGELOG.md
@@ -5,12 +5,18 @@ All notable changes to this project will be documented in this file.
### Added
-- `jib.extraDirectories.paths` closure to allow configuring the source and target of an extra directory. ([#1581](https://github.com/GoogleContainerTools/jib/issues/1581))
-
### Changed
### Fixed
+## 2.3.0
+
+### Added
+
+- `jib.extraDirectories.paths` closure to allow configuring the source and target of an extra directory. ([#1581](https://github.com/GoogleContainerTools/jib/issues/1581))
+
+### Fixed
+
- Fixed the problem not inheriting `USER` container configuration from a base image. ([#2421](https://github.com/GoogleContainerTools/jib/pull/2421))
- Fixed wrong capitalization of JSON properties in a loadable Docker manifest when building a tar image. ([#2430](https://github.com/GoogleContainerTools/jib/issues/2430))
- Fixed an issue when using a base image whose image creation timestamp contains timezone offset. ([#2428](https://github.com/GoogleContainerTools/jib/issues/2428))
diff --git a/jib-gradle-plugin/README.md b/jib-gradle-plugin/README.md
index f6a8c6bf3d..1388b03195 100644
--- a/jib-gradle-plugin/README.md
+++ b/jib-gradle-plugin/README.md
@@ -48,7 +48,7 @@ In your Gradle Java project, add the plugin to your `build.gradle`:
```groovy
plugins {
- id 'com.google.cloud.tools.jib' version '2.2.0'
+ id 'com.google.cloud.tools.jib' version '2.3.0'
}
```
diff --git a/jib-maven-plugin/CHANGELOG.md b/jib-maven-plugin/CHANGELOG.md
index 83c022afc1..18bbe68403 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
-- `` and `` fields to `` for configuring the source and target of an extra directory. ([#1581](https://github.com/GoogleContainerTools/jib/issues/1581))
-
### Changed
### Fixed
+## 2.3.0
+
+### Added
+
+- `` and `` fields to `` for configuring the source and target of an extra directory. ([#1581](https://github.com/GoogleContainerTools/jib/issues/1581))
+
+### Fixed
+
- Fixed the problem not inheriting `USER` container configuration from a base image. ([#2421](https://github.com/GoogleContainerTools/jib/pull/2421))
- Fixed wrong capitalization of JSON properties in a loadable Docker manifest when building a tar image. ([#2430](https://github.com/GoogleContainerTools/jib/issues/2430))
- Fixed an issue when using a base image whose image creation timestamp contains timezone offset. ([#2428](https://github.com/GoogleContainerTools/jib/issues/2428))
diff --git a/jib-maven-plugin/README.md b/jib-maven-plugin/README.md
index 2be00f5b5e..b6be9172d9 100644
--- a/jib-maven-plugin/README.md
+++ b/jib-maven-plugin/README.md
@@ -43,7 +43,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:2.2.0:build -Dimage=
+mvn compile com.google.cloud.tools:jib-maven-plugin:2.3.0: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).*
@@ -51,7 +51,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:2.2.0:dockerBuild
+mvn compile com.google.cloud.tools:jib-maven-plugin:2.3.0:dockerBuild
```
If you would like to set up Jib as part of your Maven build, follow the guide below.
@@ -69,7 +69,7 @@ In your Maven Java project, add the plugin to your `pom.xml`:
com.google.cloud.tools
jib-maven-plugin
- 2.2.0
+ 2.3.0
myimage