This commit is contained in:
Gyeongjae Choi 2022-08-09 22:36:10 +09:00 committed by GitHub
parent 256b85d0d8
commit 5e412795ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 28 additions and 13 deletions

View File

@ -15,7 +15,7 @@ from unittest import mock
project = "Pyodide"
copyright = "2019-2022, Pyodide contributors and Mozilla"
pyodide_version = "0.21.0a3"
pyodide_version = "0.21.0"
if ".dev" in pyodide_version or os.environ.get("READTHEDOCS_VERSION") == "latest":
CDN_URL = "https://cdn.jsdelivr.net/pyodide/dev/full/"

View File

@ -29,7 +29,7 @@ the latest release branch named `stable` (due to ReadTheDocs constraints).
- Generate the list of contributors for the release at the end of the
changelog entry with,
```bash
git shortlog -s LAST_TAG.. | cut -f2- | sort --ignore-case | tr '\n' ';' | sed 's/;/, /g;s/, $//' | fold -s
git shortlog -s LAST_TAG.. | cut -f2- | grep -v '\[bot\]' | sort --ignore-case | tr '\n' ';' | sed 's/;/, /g;s/, $//' | fold -s
```
where `LAST_TAG` is the tag for the last release.

View File

@ -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.20.0},
version = {0.21.0},
doi = {10.5281/zenodo.5156931},
url = {https://doi.org/10.5281/zenodo.5156931}
}

View File

@ -12,7 +12,11 @@ substitutions:
# Change Log
## Unreleased
## Version 0.21.0
_August 9, 2022_
[See the release notes for a summary.](https://blog.pyodide.org/posts/0.21-release/)
### Build system
@ -124,7 +128,7 @@ substitutions:
{pr}`2666`
- {{ Fix }} Fix a REPL error in printing high-dimensional lists.
{pr}`2517`
{pr}`2517` {pr}`2919`
- {{ Fix }} Fix output bug with using `input()` on online console
{pr}`2509`
@ -232,9 +236,20 @@ substitutions:
- {{ Breaking }} `pyodide_build.testing` is removed. `run_in_pyodide`
decorator can now be accessed through
[`pytest-runner`](https://github.com/pyodide/pytest-pyodide) package.
[`pytest-pyodide`](https://github.com/pyodide/pytest-pyodide) package.
{pr}`2418`
### List of contributors
Alexey Ignatiev, Andrey Smelter, andrzej, Antonio Cuni, Ben Jeffery, Brian
Benjamin Maranville, David Lechner, dragoncoder047, echorand (Amit Saha),
Filipe, Frank, Gyeongjae Choi, Hanno Rein, haoran1062, Henry Schreiner, Hood
Chatham, Jason Grout, jmdyck, Jo Bovy, John Wason, josephrocca, Kyle Cutler,
Lester Fan, Liumeo, lukemarsden, Mario Gersbach, Matt Toad, Michael Droettboom,
Michael Gilbert, Michael Neil, Mu-Tsun Tsai, Nicholas Bollweg, pysathq, Ricardo
Prins, Rob Gries, Roman Yurchak, Ryan May, Ryan Russell, stonebig, Szymswiat,
Tobias Megies, Vic Kumar, Victor, Wei Ji, Will Lachance
## Version 0.20.0
[See the release notes for a summary.](https://blog.pyodide.org/posts/0.20-release/)

View File

@ -1 +1 @@
__version__ = "0.21.0a3"
__version__ = "0.21.0"

View File

@ -2,7 +2,7 @@
PYODIDE_IMAGE_REPO="pyodide"
PYODIDE_IMAGE_TAG="20220629-py310-chrome102-firefox100"
PYODIDE_PREBUILT_IMAGE_TAG="0.20.0"
PYODIDE_PREBUILT_IMAGE_TAG="0.21.0"
DEFAULT_PYODIDE_DOCKER_IMAGE="${PYODIDE_IMAGE_REPO}/pyodide-env:${PYODIDE_IMAGE_TAG}"
DEFAULT_PYODIDE_SYSTEM_PORT="none"
DOCKER_COMMAND="/bin/bash"

View File

@ -1,12 +1,12 @@
{
"name": "pyodide",
"version": "0.21.0-alpha.3",
"version": "0.21.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "pyodide",
"version": "0.21.0-alpha.3",
"version": "0.21.0",
"license": "Apache-2.0",
"dependencies": {
"base-64": "^1.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "pyodide",
"version": "0.21.0-alpha.3",
"version": "0.21.0",
"description": "The Pyodide JavaScript package",
"keywords": [
"python",

View File

@ -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.21.0a3"
__version__ = "0.21.0"
__all__ = ["__version__"]

View File

@ -1,6 +1,6 @@
[metadata]
name = pyodide
version = 0.21.0a3
version = 0.21.0
author = Pyodide developers
description = "A Python package providing core interpreter functionality for Pyodide."
long_description = file: README.md