Skip to content

Commit e62054a

Browse files
authored
Merge pull request #58 from pyscript/2024-1-1
Bump docs version to 2024.1.1.
2 parents a7b7be5 + f3a6ffe commit e62054a

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
@@ -70,7 +70,7 @@ level.
7070

7171
You can see this application embedded into the page below:
7272

73-
<iframe src="https://ntoll.pyscriptapps.com/piratical/v4/" style="border: 1px solid black; width:100%;min-height: 400px; border-radius: 0.2rem; box-shadow: var(--md-shadow-z1);"></iframe>
73+
<iframe src="https://ntoll.pyscriptapps.com/piratical/v5/" style="border: 1px solid black; width:100%;min-height: 400px; border-radius: 0.2rem; box-shadow: var(--md-shadow-z1);"></iframe>
7474

7575
Let's explore each of the three files that make this app work.
7676

@@ -106,7 +106,7 @@ 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-
<script type="module" src="https://pyscript.net/releases/2023.12.1/core.js"></script>
109+
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
110110
</head>
111111
<body>
112112

@@ -156,7 +156,7 @@ In the end, our HTML should look like this:
156156
<meta charset="utf-8" />
157157
<meta name="viewport" content="width=device-width,initial-scale=1" />
158158
<title>🦜 Polyglot - Piratical PyScript</title>
159-
<script type="module" src="https://pyscript.net/releases/2023.12.1/core.js"></script>
159+
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
160160
</head>
161161
<body>
162162
<h1>Polyglot 🦜 💬 🇬🇧 ➡️ 🏴‍☠️</h1>
@@ -227,7 +227,7 @@ and click the "run" button. Assuming you've copied the code properly, you
227227
should have a fine old time using "Polyglot 🦜" to translate English to
228228
Pirate-ish.
229229

230-
Alternatively, [click here to see a working example of this app](https://ntoll.pyscriptapps.com/piratical/v2).
230+
Alternatively, [click here to see a working example of this app](https://ntoll.pyscriptapps.com/piratical/v5/).
231231
Notice that the bottom right hand corner contains a link to view the code on
232232
[pyscript.com](https://pyscript.com). Why not explore the code, copy it to your own
233233
account and change it to your satisfaction.

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/2023.12.1/core.css">
23+
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
2424
<!-- This script tag bootstraps PyScript -->
25-
<script type="module" src="https://pyscript.net/releases/2023.12.1/core.js"></script>
25+
<script type="module" src="https://pyscript.net/releases/2024.1.1/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/2023.12.1/core.js";
17+
import { hooks } from "https://pyscript.net/releases/2024.1.1/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": "2023.12.1"
2+
"version": "2024.1.1"
33
}

0 commit comments

Comments
 (0)