Skip to content

Commit a215ac2

Browse files
committed
Add a release note for initial release.
1 parent 0aeb2d2 commit a215ac2

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

docs/qpyodide-release-notes.qmd

+30-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,36 @@ format:
88
toc: true
99
---
1010

11-
# 0.0.1: ???? (??-??-????) [DEV]
11+
[pyodide]: https://pyodide.org/en/stable/
12+
[python]: https://www.python.org/
13+
[quarto]: https://quarto.org/
14+
15+
# 0.0.1: What does the Python Say? (02-19-2024)
16+
17+
## Features
18+
19+
- Enable an interactive [Python][python] code cells using [Pyodide][pyodide] inside of a [Quarto][quarto] document.
20+
21+
````md
22+
This is a pyodide code cell in a Quarto document.
23+
24+
```{pyodide-python}
25+
def say_hello(name):
26+
print(f"Hello there {name}"!)
27+
```
28+
````
29+
30+
- Execute code in the code cell using keyboard shortcuts:
31+
- Run selected code using: `[Cmd + Enter]` on macOS or `[Ctrl+Enter]` on Windows
32+
- Run the entire code area using: `[Shift+Enter]`
33+
34+
## Documentation
35+
36+
- Provided an extension documentation website at: <https://quarto.thecoatlessprofessor.com/pyodide>
37+
- Included several [deployment templates](https://quarto.thecoatlessprofessor.com/pyodide/qpyodide-deployment-templates.html).
38+
39+
# 0.0.0-dev.0: One Python (08-12-2023)
1240

1341
## Features
1442

15-
- Enable [pyodide](https://pyodide.org/en/stable/) code cells for Python inside of a Quarto document.
43+
- An initial proof of concept of the code cell.

0 commit comments

Comments
 (0)