Skip to content

Add changelog #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 29, 2024
Merged
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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

All notable changes to the PyScript CLI will be documented in this file, with the latest release at the top.

## [0.3.0] - 2023-03-06

*A lot has changed between 0.2.5 and 0.3.6. This is a summary of the most important changes.*

### Features

- New command `run` to run a local server which serves the current directory.
- Added the right CORS headers to the server running locally
- Added no-cache headers to the server running locally to avoid caching issues while developing


## Improvements

- Allow users to specify an empty author name, email and app description when running `pyscript create`
- 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.
- The `pyscript create` command now prompts for a name if the name is not provided as an argument.
- 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.

### Documentation

- Various improvements to the `README.md` files
- Added `CONTRIBUTING.md` file with information on how to contribute to the project and installing the development environment.
- Added `CHANGELOG.md` file to keep track of the changes in the project.