Skip to content

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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.13 version alias now resolves to Python 3.13.1. ([#297](https://github.com/heroku/buildpacks-python/pull/297))
13+
- The Python 3.12 version alias now resolves to Python 3.12.8. ([#297](https://github.com/heroku/buildpacks-python/pull/297))
14+
- The Python 3.11 version alias now resolves to Python 3.11.11. ([#297](https://github.com/heroku/buildpacks-python/pull/297))
15+
- The Python 3.10 version alias now resolves to Python 3.10.16. ([#297](https://github.com/heroku/buildpacks-python/pull/297))
16+
- The Python 3.9 version alias now resolves to Python 3.9.21. ([#297](https://github.com/heroku/buildpacks-python/pull/297))
17+
1018
## [0.19.1] - 2024-11-04
1119

1220
### Changed
@@ -24,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2432

2533
### Changed
2634

27-
- Updated the Python 3.12 version alias to Python 3.12.7. ([#276](https://github.com/heroku/buildpacks-python/pull/276))
35+
- The Python 3.12 version alias now resolves to Python 3.12.7. ([#276](https://github.com/heroku/buildpacks-python/pull/276))
2836

2937
## [0.18.0] - 2024-09-17
3038

src/python_version.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ pub(crate) const DEFAULT_PYTHON_VERSION: RequestedPythonVersion = RequestedPytho
1616
pub(crate) const DEFAULT_PYTHON_FULL_VERSION: PythonVersion = LATEST_PYTHON_3_12;
1717

1818
pub(crate) const LATEST_PYTHON_3_8: PythonVersion = PythonVersion::new(3, 8, 20);
19-
pub(crate) const LATEST_PYTHON_3_9: PythonVersion = PythonVersion::new(3, 9, 20);
20-
pub(crate) const LATEST_PYTHON_3_10: PythonVersion = PythonVersion::new(3, 10, 15);
21-
pub(crate) const LATEST_PYTHON_3_11: PythonVersion = PythonVersion::new(3, 11, 10);
22-
pub(crate) const LATEST_PYTHON_3_12: PythonVersion = PythonVersion::new(3, 12, 7);
23-
pub(crate) const LATEST_PYTHON_3_13: PythonVersion = PythonVersion::new(3, 13, 0);
19+
pub(crate) const LATEST_PYTHON_3_9: PythonVersion = PythonVersion::new(3, 9, 21);
20+
pub(crate) const LATEST_PYTHON_3_10: PythonVersion = PythonVersion::new(3, 10, 16);
21+
pub(crate) const LATEST_PYTHON_3_11: PythonVersion = PythonVersion::new(3, 11, 11);
22+
pub(crate) const LATEST_PYTHON_3_12: PythonVersion = PythonVersion::new(3, 12, 8);
23+
pub(crate) const LATEST_PYTHON_3_13: PythonVersion = PythonVersion::new(3, 13, 1);
2424

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

0 commit comments

Comments
 (0)