Skip to content

Commit 615dc05

Browse files
committed
0.29.2
1 parent 875f087 commit 615dc05

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Makefile.envs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export PYVERSION ?= 3.13.2
22
export PYODIDE_EMSCRIPTEN_VERSION ?= 4.0.9
3-
export PYODIDE_VERSION ?= 0.29.1
3+
export PYODIDE_VERSION ?= 0.29.2
44
export PYODIDE_ABI_VERSION ?= 2025_0
55

66
export PYTHON_ARCHIVE_SHA256=b8d79530e3b7c96a5cb2d40d431ddb512af4a563e863728d8713039aa50203f9

docs/project/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ list from there with "The Pyodide development team" like in the example below:
4545
month = aug,
4646
year = 2021,
4747
publisher = {Zenodo},
48-
version = {0.29.1},
48+
version = {0.29.2},
4949
doi = {10.5281/zenodo.5156931},
5050
url = {https://doi.org/10.5281/zenodo.5156931}
5151
}

src/core/pre.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const API = Module.API;
22
const Hiwire = {};
33
const Tests = {};
44
API.tests = Tests;
5-
API.version = "0.29.1";
5+
API.version = "0.29.2";
66
// This version should be equal to the one in the Makefile.envs
77
// TODO: Pass this value dynamically from outside.
88
API.abiVersion = "2025_0";

src/js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pyodide",
3-
"version": "0.29.1",
3+
"version": "0.29.2",
44
"description": "The Pyodide JavaScript package",
55
"keywords": [
66
"python",

src/js/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* from the version in ``package.json`` which follows the node package manager
77
* version convention.
88
*/
9-
export const version: string = "0.29.1";
9+
export const version: string = "0.29.2";

src/py/pyodide/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This package is imported by the test suite as well, and currently we don't use
1111
# pytest mocks for js or pyodide_js, so make sure to test "if IN_BROWSER" before
1212
# importing from these.
13-
__version__ = "0.29.1"
13+
__version__ = "0.29.2"
1414

1515
__all__ = ["__version__", "console", "code", "ffi", "http", "webloop"]
1616

src/py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyodide-py"
7-
version = "0.29.1"
7+
version = "0.29.2"
88
authors = [{name = "Pyodide developers"}]
99
description = "A Python package providing core interpreter functionality for Pyodide"
1010
classifiers = [

0 commit comments

Comments
 (0)