From 8233708f0aafd9e10b493b1084cd341a8e15efb0 Mon Sep 17 00:00:00 2001 From: Malax Date: Mon, 31 Jul 2023 12:53:28 +0000 Subject: [PATCH] Prepare release v2.0.0 --- buildpacks/jvm-function-invoker/CHANGELOG.md | 7 ++++++- buildpacks/jvm-function-invoker/buildpack.toml | 2 +- buildpacks/jvm/CHANGELOG.md | 7 +++++-- buildpacks/jvm/buildpack.toml | 2 +- buildpacks/maven/CHANGELOG.md | 7 ++++++- buildpacks/maven/buildpack.toml | 2 +- buildpacks/sbt/CHANGELOG.md | 7 ++++++- buildpacks/sbt/buildpack.toml | 2 +- meta-buildpacks/java-function/CHANGELOG.md | 9 ++++++++- meta-buildpacks/java-function/buildpack.toml | 8 ++++---- meta-buildpacks/java/CHANGELOG.md | 8 +++++++- meta-buildpacks/java/buildpack.toml | 6 +++--- meta-buildpacks/scala/CHANGELOG.md | 8 +++++++- meta-buildpacks/scala/buildpack.toml | 6 +++--- 14 files changed, 59 insertions(+), 22 deletions(-) diff --git a/buildpacks/jvm-function-invoker/CHANGELOG.md b/buildpacks/jvm-function-invoker/CHANGELOG.md index a0f41e3..1dfe8bf 100644 --- a/buildpacks/jvm-function-invoker/CHANGELOG.md +++ b/buildpacks/jvm-function-invoker/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- No changes. + ## [1.1.2] - 2023-07-24 - No changes. @@ -178,6 +182,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added * Initial release. -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/buildpacks/jvm-function-invoker/buildpack.toml b/buildpacks/jvm-function-invoker/buildpack.toml index 6d301be..e483c13 100644 --- a/buildpacks/jvm-function-invoker/buildpack.toml +++ b/buildpacks/jvm-function-invoker/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/jvm-function-invoker" -version = "1.1.2" +version = "2.0.0" name = "JVM Function Invoker" clear-env = true homepage = "https://github.com/heroku/buildpacks-jvm" diff --git a/buildpacks/jvm/CHANGELOG.md b/buildpacks/jvm/CHANGELOG.md index d75c0ed..84ba739 100644 --- a/buildpacks/jvm/CHANGELOG.md +++ b/buildpacks/jvm/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + * This buildpack now requires that an OpenJDK version is specified in `system.properties` when the buildpack is used standalone (no other buildpack adds `jdk` to the build plan `require`s). Users that use this buildpack in a standalone fashion can add a `system.properties` file to their application with the following contents to restore the old behavior of installing the most recent OpenJDK 8 release: `java.runtime.version=8`. ([#546](https://github.com/heroku/buildpacks-jvm/pull/546)) ## [1.1.2] - 2023-07-24 @@ -227,6 +229,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 -[1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 +[1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/buildpacks/jvm/buildpack.toml b/buildpacks/jvm/buildpack.toml index 6c25c8a..9ee4da5 100644 --- a/buildpacks/jvm/buildpack.toml +++ b/buildpacks/jvm/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/jvm" -version = "1.1.2" +version = "2.0.0" name = "Heroku OpenJDK Buildpack" homepage = "https://github.com/heroku/buildpacks-jvm" description = "Official Heroku buildpack for installing OpenJDK" diff --git a/buildpacks/maven/CHANGELOG.md b/buildpacks/maven/CHANGELOG.md index 26ba826..910e6d0 100644 --- a/buildpacks/maven/CHANGELOG.md +++ b/buildpacks/maven/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- No changes. + ## [1.1.2] - 2023-07-24 - No changes. @@ -101,6 +105,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/buildpacks/maven/buildpack.toml b/buildpacks/maven/buildpack.toml index 38d9935..c0a8a64 100644 --- a/buildpacks/maven/buildpack.toml +++ b/buildpacks/maven/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/maven" -version = "1.1.2" +version = "2.0.0" name = "Maven" clear-env = true homepage = "https://github.com/heroku/buildpacks-jvm" diff --git a/buildpacks/sbt/CHANGELOG.md b/buildpacks/sbt/CHANGELOG.md index a3b2373..b90cd33 100644 --- a/buildpacks/sbt/CHANGELOG.md +++ b/buildpacks/sbt/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- No changes. + ## [1.1.2] - 2023-07-24 - No changes. @@ -19,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/buildpacks/sbt/buildpack.toml b/buildpacks/sbt/buildpack.toml index e46bda7..f78532b 100644 --- a/buildpacks/sbt/buildpack.toml +++ b/buildpacks/sbt/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/sbt" -version = "1.1.2" +version = "2.0.0" name = "sbt" clear-env = true homepage = "https://github.com/heroku/buildpacks-jvm" diff --git a/meta-buildpacks/java-function/CHANGELOG.md b/meta-buildpacks/java-function/CHANGELOG.md index ef979e3..5da30f3 100644 --- a/meta-buildpacks/java-function/CHANGELOG.md +++ b/meta-buildpacks/java-function/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- Updated `heroku/jvm-function-invoker` to `2.0.0`. +- Updated `heroku/jvm` to `2.0.0`. +- Updated `heroku/maven` to `2.0.0`. + ## [1.1.2] - 2023-07-24 - Updated `heroku/jvm` to `1.1.2`. @@ -242,6 +248,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/meta-buildpacks/java-function/buildpack.toml b/meta-buildpacks/java-function/buildpack.toml index 6a16c0a..78302ef 100644 --- a/meta-buildpacks/java-function/buildpack.toml +++ b/meta-buildpacks/java-function/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/java-function" -version = "1.1.2" +version = "2.0.0" name = "Java Function" homepage = "https://github.com/heroku/buildpacks-jvm" keywords = ["java", "function"] @@ -14,15 +14,15 @@ type = "BSD-3-Clause" [[order.group]] id = "heroku/jvm" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/maven" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/jvm-function-invoker" -version = "1.1.2" +version = "2.0.0" [metadata] [metadata.release] diff --git a/meta-buildpacks/java/CHANGELOG.md b/meta-buildpacks/java/CHANGELOG.md index a3df039..2928418 100644 --- a/meta-buildpacks/java/CHANGELOG.md +++ b/meta-buildpacks/java/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- Updated `heroku/jvm` to `2.0.0`. +- Updated `heroku/maven` to `2.0.0`. + ## [1.1.2] - 2023-07-24 - Updated `heroku/jvm` to `1.1.2`. @@ -174,6 +179,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/meta-buildpacks/java/buildpack.toml b/meta-buildpacks/java/buildpack.toml index 6a2cffc..9c2772a 100644 --- a/meta-buildpacks/java/buildpack.toml +++ b/meta-buildpacks/java/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/java" -version = "1.1.2" +version = "2.0.0" name = "Java" homepage = "https://github.com/heroku/buildpacks-jvm" description = "Official Heroku buildpack for Java applications." @@ -15,11 +15,11 @@ type = "BSD-3-Clause" [[order.group]] id = "heroku/jvm" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/maven" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/procfile" diff --git a/meta-buildpacks/scala/CHANGELOG.md b/meta-buildpacks/scala/CHANGELOG.md index 96802a7..c3b6ffc 100644 --- a/meta-buildpacks/scala/CHANGELOG.md +++ b/meta-buildpacks/scala/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2023-07-31 + +- Updated `heroku/jvm` to `2.0.0`. +- Updated `heroku/sbt` to `2.0.0`. + ## [1.1.2] - 2023-07-24 - Updated `heroku/jvm` to `1.1.2`. @@ -21,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Initial release -[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...HEAD +[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.2...v2.0.0 [1.1.2]: https://github.com/heroku/buildpacks-jvm/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/heroku/buildpacks-jvm/releases/tag/v1.1.1 \ No newline at end of file diff --git a/meta-buildpacks/scala/buildpack.toml b/meta-buildpacks/scala/buildpack.toml index 3ed1873..a0d9fa1 100644 --- a/meta-buildpacks/scala/buildpack.toml +++ b/meta-buildpacks/scala/buildpack.toml @@ -2,7 +2,7 @@ api = "0.9" [buildpack] id = "heroku/scala" -version = "1.1.2" +version = "2.0.0" name = "Scala" homepage = "https://github.com/heroku/buildpacks-jvm" description = "Official Heroku buildpack for Scala applications." @@ -15,11 +15,11 @@ type = "BSD-3-Clause" [[order.group]] id = "heroku/jvm" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/sbt" -version = "1.1.2" +version = "2.0.0" [[order.group]] id = "heroku/procfile"