Skip to content

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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.12 version alias now resolves to Python 3.12.13. ([#521](https://github.com/heroku/buildpacks-python/pull/521))
13+
- The Python 3.11 version alias now resolves to Python 3.11.15. ([#521](https://github.com/heroku/buildpacks-python/pull/521))
14+
- The Python 3.10 version alias now resolves to Python 3.10.20. ([#521](https://github.com/heroku/buildpacks-python/pull/521))
15+
1016
## [6.0.0] - 2026-03-03
1117

1218
### Changed

src/python_version.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ pub(crate) const NEWEST_SUPPORTED_PYTHON_3_MINOR_VERSION: u16 = 14;
2121
pub(crate) const NEXT_UNRELEASED_PYTHON_3_MINOR_VERSION: u16 =
2222
NEWEST_SUPPORTED_PYTHON_3_MINOR_VERSION + 1;
2323

24-
pub(crate) const LATEST_PYTHON_3_10: PythonVersion = PythonVersion::new(3, 10, 19);
25-
pub(crate) const LATEST_PYTHON_3_11: PythonVersion = PythonVersion::new(3, 11, 14);
26-
pub(crate) const LATEST_PYTHON_3_12: PythonVersion = PythonVersion::new(3, 12, 12);
24+
pub(crate) const LATEST_PYTHON_3_10: PythonVersion = PythonVersion::new(3, 10, 20);
25+
pub(crate) const LATEST_PYTHON_3_11: PythonVersion = PythonVersion::new(3, 11, 15);
26+
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, 12);
2828
pub(crate) const LATEST_PYTHON_3_14: PythonVersion = PythonVersion::new(3, 14, 3);
2929

0 commit comments

Comments
 (0)