Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/beginning-pyscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ module in the document's `<head>` tag:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.2.1/core.css">
<script type="module" src="https://pyscript.net/releases/2024.2.1/core.js"></script>
</head>
<body>

Expand Down Expand Up @@ -157,8 +157,8 @@ In the end, our HTML should look like this:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.2.1/core.css">
<script type="module" src="https://pyscript.net/releases/2024.2.1/core.js"></script>
</head>
<body>
<h1>Polyglot 🦜 💬 🇬🇧 ➡️ 🏴‍☠️</h1>
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/first-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ CSS:
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- PyScript CSS -->
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
<link rel="stylesheet" href="https://pyscript.net/releases/2024.2.1/core.css">
<!-- This script tag bootstraps PyScript -->
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
<script type="module" src="https://pyscript.net/releases/2024.2.1/core.js"></script>
</head>
<body>
<!-- your code goes here... -->
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Here's an example of how a PyScript plugin looks like:

```js
// import the hooks from PyScript first...
import { hooks } from "https://pyscript.net/releases/2024.1.3/core.js";
import { hooks } from "https://pyscript.net/releases/2024.2.1/core.js";

// Use the `main` attribute on hooks do define plugins that run on the main thread
hooks.main.onReady.add((wrap, element) => {
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2024.1.3"
"version": "2024.2.1"
}