Skip to content

Commit

Permalink
Version 0.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Sep 25, 2023
1 parent 04970fd commit bda1ba4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/project/about.md
Expand Up @@ -45,7 +45,7 @@ list from there with "The Pyodide development team" like in the example below:
month = aug,
year = 2021,
publisher = {Zenodo},
version = {0.24.0},
version = {0.24.1},
doi = {10.5281/zenodo.5156931},
url = {https://doi.org/10.5281/zenodo.5156931}
}
Expand Down
2 changes: 1 addition & 1 deletion pyodide-build/pyodide_build/__init__.py
@@ -1 +1 @@
__version__ = "0.24.0"
__version__ = "0.24.1"
2 changes: 1 addition & 1 deletion src/core/pre.js
Expand Up @@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.24.0";
API.version = "0.24.1";
Module.hiwire = Hiwire;
function getTypeTag(x) {
try {
Expand Down
4 changes: 2 additions & 2 deletions src/js/package-lock.json

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

2 changes: 1 addition & 1 deletion src/js/package.json
@@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.24.0",
"version": "0.24.1",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
Expand Up @@ -6,4 +6,4 @@
* from the version in ``package.json`` which follows the node package manager
* version convention.
*/
export const version: string = "0.24.0";
export const version: string = "0.24.1";
2 changes: 1 addition & 1 deletion src/py/pyodide/__init__.py
Expand Up @@ -10,7 +10,7 @@
# This package is imported by the test suite as well, and currently we don't use
# pytest mocks for js or pyodide_js, so make sure to test "if IN_BROWSER" before
# importing from these.
__version__ = "0.24.0"
__version__ = "0.24.1"

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

Expand Down
2 changes: 1 addition & 1 deletion src/py/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = pyodide-py
version = 0.24.0
version = 0.24.1
author = Pyodide developers
description = "A Python package providing core interpreter functionality for Pyodide."
long_description = file: README.md
Expand Down

0 comments on commit bda1ba4

Please sign in to comment.