Skip to content

Commit d89a301

Browse files
authored
1 parent f8fab1d commit d89a301

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- The Python 3.14 version alias now resolves to Python 3.14.5. ([#569](https://github.com/heroku/buildpacks-python/pull/569))
13+
1014
## [6.5.0] - 2026-05-07
1115

1216
### Changed

src/python_version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub(crate) const LATEST_PYTHON_3_10: PythonVersion = PythonVersion::new(3, 10, 2
2525
pub(crate) const LATEST_PYTHON_3_11: PythonVersion = PythonVersion::new(3, 11, 15);
2626
pub(crate) const LATEST_PYTHON_3_12: PythonVersion = PythonVersion::new(3, 12, 13);
2727
pub(crate) const LATEST_PYTHON_3_13: PythonVersion = PythonVersion::new(3, 13, 13);
28-
pub(crate) const LATEST_PYTHON_3_14: PythonVersion = PythonVersion::new(3, 14, 4);
28+
pub(crate) const LATEST_PYTHON_3_14: PythonVersion = PythonVersion::new(3, 14, 5);
2929

3030
/// The Python version that was requested for a project.
3131
#[derive(Clone, Debug, PartialEq)]

0 commit comments

Comments
 (0)