Skip to content

Commit

Permalink
0.22.0 (#3389)
Browse files Browse the repository at this point in the history
Co-authored-by: Roman Yurchak <rth.yurchak@gmail.com>
  • Loading branch information
ryanking13 and rth committed Jan 3, 2023
1 parent f654b95 commit 8e965e5
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

project = "Pyodide"
copyright = "2019-2022, Pyodide contributors and Mozilla"
pyodide_version = "0.22.0.dev0"
pyodide_version = "0.22.0"

if ".dev" in pyodide_version or os.environ.get("READTHEDOCS_VERSION") == "latest":
CDN_URL = "https://cdn.jsdelivr.net/pyodide/dev/full/"
Expand Down
2 changes: 1 addition & 1 deletion docs/project/about.md
Original file line number Diff line number Diff line change
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.21.0},
version = {0.22.0},
doi = {10.5281/zenodo.5156931},
url = {https://doi.org/10.5281/zenodo.5156931}
}
Expand Down
22 changes: 19 additions & 3 deletions docs/project/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ myst:

## Unreleased

- {{ Enhancement }} Updated Emscripten to version 3.1.27
{pr}`2958`, {pr}`2950`, {pr}`3027`, {pr}`3107`, {pr}`3148`, {pr}`3236`,
{pr}`3239`, {pr}`3280`, {pr}`3314`
## Version 0.22.0

_January 3, 2023_

[See the release notes for a summary.](https://blog.pyodide.org/posts/0.22-release/)

## 0.22.0

### Deployment and testing

Expand Down Expand Up @@ -247,6 +251,10 @@ myst:

### Build System

- {{ Enhancement }} Updated Emscripten to version 3.1.27
{pr}`2958`, {pr}`2950`, {pr}`3027`, {pr}`3107`, {pr}`3148`, {pr}`3236`,
{pr}`3239`, {pr}`3280`, {pr}`3314`

- {{ Enhancement }} Added `requirements/host` key to the `meta.yaml` spec to allow
host dependencies that are required for building packages.
{pr}`2132`
Expand Down Expand Up @@ -323,6 +331,14 @@ myst:
- {{ Fix }} Fix scipy handling of exceptions that are raised from C++ code.
{pr}`3384`.

### List of Contributors

Aierie, dataxerik, David Lechner, Deepak Cherian, Filipe, Gyeongjae Choi, Hood
Chatham, H.Yamada, Jacques Boscq, Jeremy Tuloup, Joe Marshall, John Wason,
Loïc Estève, partev, Patrick Arminio, Péter Ferenc Gyarmati, Prete, Qijia
Liu, Roman Yurchak, ryanking13, skelsec, Starz0r, Will Lachance, YeonWoo, Yizhi
Liu

## Version 0.21.3

_September 15, 2022_
Expand Down
2 changes: 1 addition & 1 deletion pyodide-build/pyodide_build/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.22.0.dev0"
__version__ = "0.22.0"
2 changes: 1 addition & 1 deletion src/core/pre.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const API = Module.API;
const Hiwire = {};
const Tests = {};
API.tests = Tests;
API.version = "0.22.0.dev0";
API.version = "0.22.0";
Module.hiwire = Hiwire;
const getTypeTag = (x) => Object.prototype.toString.call(x);
API.getTypeTag = getTypeTag;
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.22.0-dev.0",
"version": "0.22.0",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* The version here follows PEP440 which is different from the one in package.json,
* as we want to compare this with the version of Pyodide Python package without conversion.
*/
export const version: string = "0.22.0.dev0";
export const version: string = "0.22.0";
2 changes: 1 addition & 1 deletion src/py/pyodide/__init__.py
Original file line number Diff line number Diff line change
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.22.0.dev0"
__version__ = "0.22.0"

__all__ = ["__version__"]

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

0 comments on commit 8e965e5

Please sign in to comment.