You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to the PyScript CLI will be documented in this file, with the latest release at the top.
4
+
5
+
## [0.3.0] - 2023-03-06
6
+
7
+
*A lot has changed between 0.2.5 and 0.3.6. This is a summary of the most important changes.*
8
+
9
+
### Features
10
+
11
+
- New command `run` to run a local server which serves the current directory.
12
+
- Added the right CORS headers to the server running locally
13
+
- Added no-cache headers to the server running locally to avoid caching issues while developing
14
+
15
+
16
+
## Improvements
17
+
18
+
- Allow users to specify an empty author name, email and app description when running `pyscript create`
19
+
- Merged `wrap` command into `create` command, so now `pyscript create` can create a new project or wrap an existing python file into a new pyscript project.
20
+
- The `pyscript create` command now prompts for a name if the name is not provided as an argument.
21
+
- You can now pass a single Python file to `pyscript create` and it will create a new project with the file's contents in the new `main.py` file - similar to using the `--wrap` option.
22
+
23
+
### Documentation
24
+
25
+
- Various improvements to the `README.md` files
26
+
- Added `CONTRIBUTING.md` file with information on how to contribute to the project and installing the development environment.
27
+
- Added `CHANGELOG.md` file to keep track of the changes in the project.
0 commit comments