diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e49761..1044091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.0] - 2025-01-21 + ### Changed - Regex based parser has been removed in favor of a `winnow` based parser combinator, the format is now more strict. See [SPEC.md](spec.md) for more details. ([#255](https://github.com/heroku/buildpacks-procfile/pull/255)) @@ -111,7 +113,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of Rust procfile buildpack, the old Go buildpack is now archived. - Re-write logic of Procfile parsing to match Heroku's behavior, which has different behavior from the Go version (that assumed that a Procfile was YAML syntax). -[unreleased]: https://github.com/heroku/buildpacks-procfile/compare/v3.2.0...HEAD +[unreleased]: https://github.com/heroku/buildpacks-procfile/compare/v4.0.0...HEAD +[4.0.0]: https://github.com/heroku/buildpacks-procfile/compare/v3.2.0...v4.0.0 [3.2.0]: https://github.com/heroku/buildpacks-procfile/compare/v3.1.2...v3.2.0 [3.1.2]: https://github.com/heroku/buildpacks-procfile/compare/v3.1.1...v3.1.2 [3.1.1]: https://github.com/heroku/buildpacks-procfile/compare/v3.1.0...v3.1.1 diff --git a/buildpack.toml b/buildpack.toml index 1f8a3f4..50f76c7 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -2,7 +2,7 @@ api = "0.10" [buildpack] id = "heroku/procfile" -version = "3.2.0" +version = "4.0.0" name = "Heroku Procfile" homepage = "https://github.com/heroku/buildpacks-procfile" description = "Heroku's Procfile buildpack."