Skip to content

Commit

Permalink
Merge branch 'main' into release_automation
Browse files Browse the repository at this point in the history
  • Loading branch information
colincasey authored Aug 1, 2023
2 parents 55b4c80 + 83021da commit 663c6ec
Show file tree
Hide file tree
Showing 33 changed files with 260 additions and 856 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ updates:
- "dependencies"
- "rust"
- "skip changelog"
groups:
libcnb:
patterns:
- "libcnb*"
- "libherokubuildpack"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Update Rust toolchain
run: rustup update
- name: Rust Cache
uses: Swatinem/[email protected].0
uses: Swatinem/[email protected].1
- name: Clippy
run: cargo clippy --all-targets --locked -- --deny warnings
- name: rustfmt
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Update Rust toolchain
run: rustup update
- name: Rust Cache
uses: Swatinem/[email protected].0
uses: Swatinem/[email protected].1
- name: Run unit tests
run: cargo test --locked

Expand All @@ -58,9 +58,9 @@ jobs:
- name: Install Rust linux-musl target
run: rustup target add x86_64-unknown-linux-musl
- name: Rust Cache
uses: Swatinem/[email protected].0
uses: Swatinem/[email protected].1
- name: Install Pack CLI
uses: buildpacks/github-actions/setup-pack@v5.2.0
uses: buildpacks/github-actions/setup-pack@v5.3.0
- name: Pull builder image
run: docker pull ${{ env.INTEGRATION_TEST_CNB_BUILDER }}
# The integration tests are annotated with the `ignore` attribute, allowing us to run
Expand Down
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Removed

- Removed support for Salesforce Functions. ([#83](https://github.com/heroku/buildpacks-python/pull/83))

## [0.5.0] - 2023-07-24

### Changed

- User-provided environment variables are now propagated to subprocesses such as `pip install`. ([#65](https://github.com/heroku/buildpacks-python/pull/65))
- Updated pip from 23.1.2 to 23.2.1. ([#67](https://github.com/heroku/buildpacks-python/pull/67) and [#76](https://github.com/heroku/buildpacks-python/pull/76))
- Updated setuptools from 67.8.0 to 68.0.0. ([#51](https://github.com/heroku/buildpacks-python/pull/51))
- Updated wheel from 0.40.0 to 0.41.0. ([#78](https://github.com/heroku/buildpacks-python/pull/78))

## [0.4.0] - 2023-06-07

Expand Down Expand Up @@ -37,10 +46,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- The `PYTHONHOME` environment variable is now set to work around uWSGI not handling relocated Python installs correctly. ([#25](https://github.com/heroku/buildpacks-python/pull/25))
- The `PYTHONHOME` environment variable is now set, to work around uWSGI not handling relocated Python installs correctly. ([#25](https://github.com/heroku/buildpacks-python/pull/25))

## [0.1.0] - 2023-03-06

### Added

- Initial implementation. ([#3](https://github.com/heroku/buildpacks-python/pull/3))

[unreleased]: https://github.com/heroku/buildpacks-python/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/heroku/buildpacks-python/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/heroku/buildpacks-python/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/heroku/buildpacks-python/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/heroku/buildpacks-python/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/heroku/buildpacks-python/releases/tag/v0.1.0
Loading

0 comments on commit 663c6ec

Please sign in to comment.