Skip to content

Commit

Permalink
JVM invoker: Update libcnb and libherokubuildpack to 0.3.0 (#164)
Browse files Browse the repository at this point in the history
Since they are major version updates (that don't get picked up automatically
by the tilde dependency version ranges), both packages have to be updated
simultaneously (which Dependabot can't do), due to:
https://github.com/Malax/libcnb.rs/issues/90

Changes:
Malax/libcnb.rs@v0.2.0...v0.3.0
heroku/libherokubuildpack@v0.2.0...v0.3.0

The buildpack's API version also had to be bumped due to:
https://github.com/Malax/libcnb.rs/pull/50

Closes #162.
Closes #163.
GUS-W-9921906.
  • Loading branch information
edmorley authored Sep 20, 2021
1 parent 9779d3d commit a74d0ea
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 58 deletions.
2 changes: 2 additions & 0 deletions buildpacks/jvm-function-invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
* Update buildpack API version from `0.4` to `0.5`
* Update `libcnb` and `libherokubuildpack` to new major versions

## [0.5.2] 2021/08/31
* Rewrite to use libcnb 0.2.0 features
Expand Down
107 changes: 52 additions & 55 deletions buildpacks/jvm-function-invoker/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions buildpacks/jvm-function-invoker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2018"

[dependencies]
indoc = "1.0.3"
libcnb = "0.2.0"
libherokubuildpack = { version = "0.2.0", features = ["toml"] }
libcnb = "0.3.0"
libherokubuildpack = { version = "0.3.0", features = ["toml"] }
serde = "1.0.130"
thiserror = "1.0.29"
toml = "0.5.8"
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/jvm-function-invoker/buildpack.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
api = "0.4"
api = "0.5"

[buildpack]
id = "heroku/jvm-function-invoker"
Expand Down

0 comments on commit a74d0ea

Please sign in to comment.