Skip to content

Commit

Permalink
release v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Oct 13, 2024
1 parent 6af847e commit 4d96a07
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyapp"
version = "0.23.0"
version = "0.24.0"
description = "Runtime installer for Python applications"
repository = "https://github.com/ofek/pyapp"
documentation = "https://ofek.dev/pyapp/"
Expand Down
30 changes: 15 additions & 15 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,35 +253,35 @@ const DEFAULT_CPYTHON_DISTRIBUTIONS: &[(&str, &str, &str, &str, &str, &str, &str
#[rustfmt::skip]
const DEFAULT_PYPY_DISTRIBUTIONS: &[(&str, &str, &str, &str, &str)] = &[
("pypy3.10", "linux", "aarch64", "gnu",
"https://downloads.python.org/pypy/pypy3.10-v7.3.15-aarch64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2"),
("pypy3.10", "linux", "x86_64", "gnu",
"https://downloads.python.org/pypy/pypy3.10-v7.3.15-linux64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2"),
("pypy3.10", "windows", "x86_64", "msvc",
"https://downloads.python.org/pypy/pypy3.10-v7.3.15-win64.zip"),
"https://downloads.python.org/pypy/pypy3.10-v7.3.17-win64.zip"),
("pypy3.10", "macos", "aarch64", "",
"https://downloads.python.org/pypy/pypy3.10-v7.3.15-macos_arm64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.10-v7.3.17-macos_arm64.tar.bz2"),
("pypy3.10", "macos", "x86_64", "",
"https://downloads.python.org/pypy/pypy3.10-v7.3.15-macos_x86_64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.10-v7.3.17-macos_x86_64.tar.bz2"),
("pypy3.9", "linux", "aarch64", "gnu",
"https://downloads.python.org/pypy/pypy3.9-v7.3.15-aarch64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2"),
("pypy3.9", "linux", "x86_64", "gnu",
"https://downloads.python.org/pypy/pypy3.9-v7.3.15-linux64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux64.tar.bz2"),
("pypy3.9", "windows", "x86_64", "msvc",
"https://downloads.python.org/pypy/pypy3.9-v7.3.15-win64.zip"),
"https://downloads.python.org/pypy/pypy3.9-v7.3.16-win64.zip"),
("pypy3.9", "macos", "aarch64", "",
"https://downloads.python.org/pypy/pypy3.9-v7.3.15-macos_arm64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_arm64.tar.bz2"),
("pypy3.9", "macos", "x86_64", "",
"https://downloads.python.org/pypy/pypy3.9-v7.3.15-macos_x86_64.tar.bz2"),
"https://downloads.python.org/pypy/pypy3.9-v7.3.16-macos_x86_64.tar.bz2"),
("pypy2.7", "linux", "aarch64", "gnu",
"https://downloads.python.org/pypy/pypy2.7-v7.3.15-aarch64.tar.bz2"),
"https://downloads.python.org/pypy/pypy2.7-v7.3.17-aarch64.tar.bz2"),
("pypy2.7", "linux", "x86_64", "gnu",
"https://downloads.python.org/pypy/pypy2.7-v7.3.15-linux64.tar.bz2"),
"https://downloads.python.org/pypy/pypy2.7-v7.3.17-linux64.tar.bz2"),
("pypy2.7", "windows", "x86_64", "msvc",
"https://downloads.python.org/pypy/pypy2.7-v7.3.15-win64.zip"),
"https://downloads.python.org/pypy/pypy2.7-v7.3.17-win64.zip"),
("pypy2.7", "macos", "aarch64", "",
"https://downloads.python.org/pypy/pypy2.7-v7.3.15-macos_arm64.tar.bz2"),
"https://downloads.python.org/pypy/pypy2.7-v7.3.17-macos_arm64.tar.bz2"),
("pypy2.7", "macos", "x86_64", "",
"https://downloads.python.org/pypy/pypy2.7-v7.3.15-macos_x86_64.tar.bz2"),
"https://downloads.python.org/pypy/pypy2.7-v7.3.17-macos_x86_64.tar.bz2"),
];

fn set_runtime_variable(name: &str, value: impl Display) {
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

## 0.24.0 - 2024-10-13

***Changed:***

- The `PYAPP_DISTRIBUTION_VARIANT` has been renamed to `PYAPP_DISTRIBUTION_VARIANT_CPU` although the former is still supported for backwards compatibility
Expand All @@ -16,6 +18,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Support Python 3.13 and set as the default version
- Add `PYAPP_DISTRIBUTION_VARIANT_GIL` option (Python 3.13+)
- Update default CPython distributions to 20241008
- Update default PyPy distributions to 7.3.17
- Update dependencies

## 0.23.0 - 2024-08-03
Expand Down

0 comments on commit 4d96a07

Please sign in to comment.