Skip to content

Commit 43bc619

Browse files
committed
Updated both Pyodide and Ruby to their latest
1 parent 0000267 commit 43bc619

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

docs/core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/core.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/interpreter/pyodide.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const toJsOptions = { dict_converter: Object.fromEntries };
88
/* c8 ignore start */
99
export default {
1010
type,
11-
module: (version = '0.23.4') =>
11+
module: (version = '0.24.1') =>
1212
`https://cdn.jsdelivr.net/pyodide/v${version}/full/pyodide.mjs`,
1313
async engine({ loadPyodide }, config, url) {
1414
const { stderr, stdout, get } = stdio();

esm/interpreter/ruby-wasm-wasi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const jsType = type.replace(/\W+/g, '_');
1414
export default {
1515
type,
1616
experimental: true,
17-
module: (version = '2.0.0') =>
17+
module: (version = '2.1.0') =>
1818
`https://cdn.jsdelivr.net/npm/ruby-3_2-wasm-wasi@${version}/dist/browser.esm.js`,
1919
async engine({ DefaultRubyVM }, config, url) {
2020
const response = await fetch(

node.importmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"imports": {
33
"http://pyodide": "./test/mocked/pyodide.mjs",
4-
"https://cdn.jsdelivr.net/pyodide/v0.23.4/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
4+
"https://cdn.jsdelivr.net/pyodide/v0.24.1/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
55
"https://cdn.jsdelivr.net/npm/@micropython/[email protected]/micropython.mjs": "./test/mocked/micropython.mjs",
66
"https://cdn.jsdelivr.net/npm/[email protected]/es.js": "./test/mocked/toml.mjs"
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@
7070
"coincident": "^0.11.6"
7171
},
7272
"worker": {
73-
"blob": "sha256-ymu4meyO3/xEFoZ1GF534LI+VCPKr7ELxnXOkS5hEIQ="
73+
"blob": "sha256-gLCvOFWjT4OHhGI2nWqJxf/DwePb7bHxp1VFbSOlTcA="
7474
}
7575
}

test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const polyscript = require("../cjs");
7171
// all tests
7272
for (const test of [
7373
async function versionedRuntime() {
74-
document.head.innerHTML = `<script type="pyodide" version="0.23.4">${content}</script>`;
74+
document.head.innerHTML = `<script type="pyodide" version="0.24.1">${content}</script>`;
7575
await tick();
7676
assert(pyodide.content, dedent(content));
7777
assert(pyodide.target.tagName, "PYODIDE-SCRIPT");

versions/pyodide

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.23.4
1+
0.24.1

versions/ruby-wasm-wasi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.1.0

0 commit comments

Comments
 (0)