Skip to content

Commit b85bbf0

Browse files
authored
Merge pull request #61 from pyscript/2024.1.3
Bump docs to version 2024.1.3
2 parents 6b00ac1 + 76234b4 commit b85bbf0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/beginning-pyscript.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ module in the document's `<head>` tag:
106106
<meta charset="utf-8" />
107107
<meta name="viewport" content="width=device-width,initial-scale=1" />
108108
<title>🦜 Polyglot - Piratical PyScript</title>
109-
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
110-
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
109+
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
110+
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
111111
</head>
112112
<body>
113113

@@ -157,8 +157,8 @@ In the end, our HTML should look like this:
157157
<meta charset="utf-8" />
158158
<meta name="viewport" content="width=device-width,initial-scale=1" />
159159
<title>🦜 Polyglot - Piratical PyScript</title>
160-
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
161-
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
160+
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
161+
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
162162
</head>
163163
<body>
164164
<h1>Polyglot 🦜 💬 🇬🇧 ➡️ 🏴‍☠️</h1>

docs/user-guide/first-steps.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ CSS:
2020
<meta charset="UTF-8">
2121
<meta name="viewport" content="width=device-width,initial-scale=1.0">
2222
<!-- PyScript CSS -->
23-
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
23+
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.3/core.css">
2424
<!-- This script tag bootstraps PyScript -->
25-
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
25+
<script type="module" src="https://pyscript.net/releases/2024.1.3/core.js"></script>
2626
</head>
2727
<body>
2828
<!-- your code goes here... -->

docs/user-guide/plugins.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Here's an example of how a PyScript plugin looks like:
1414

1515
```js
1616
// import the hooks from PyScript first...
17-
import { hooks } from "https://pyscript.net/releases/2024.1.1/core.js";
17+
import { hooks } from "https://pyscript.net/releases/2024.1.3/core.js";
1818

1919
// Use the `main` attribute on hooks do define plugins that run on the main thread
2020
hooks.main.onReady.add((wrap, element) => {

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "2024.1.1"
2+
"version": "2024.1.3"
33
}

0 commit comments

Comments
 (0)