Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,5 @@ jobs:
run: ./bin/setup
- name: Install the package
run: "micropython -m mip install github:${{ github.repository }}@${{ github.ref_name }}"
- name: Cross-compile the package
run: ./bin/compile
- name: Run tests
run: micropython -m unittest
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,7 @@ micropython -m unittest

## Releasing

To release a new version, first cross-compile to micropython bytecode. You need `mpy-cross` in your `PATH`:

```bash
./bin/compile
```

Then, update the versions in `manifest.py` and `package.json`. Commit your changes and make a pull request. After merging, create a new tag and push to GitHub:
To release a new version, update the version in `package.json`. Commit your changes and make a pull request. After merging, create a new tag and push to GitHub:

```bash
git tag vX.Y.Z
Expand Down
11 changes: 0 additions & 11 deletions bin/compile

This file was deleted.

Binary file removed mqterm/__init__.mpy
Binary file not shown.
Binary file removed mqterm/jobs.mpy
Binary file not shown.
Binary file removed mqterm/terminal.mpy
Binary file not shown.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"urls": [
["mqterm/__init__.mpy", "github:solanus-systems/mqterm/mqterm/__init__.mpy"],
["mqterm/jobs.mpy", "github:solanus-systems/mqterm/mqterm/jobs.mpy"],
["mqterm/terminal.mpy", "github:solanus-systems/mqterm/mqterm/terminal.mpy"]
["mqterm/__init__.py", "github:solanus-systems/mqterm/mqterm/__init__.py"],
["mqterm/jobs.py", "github:solanus-systems/mqterm/mqterm/jobs.py"],
["mqterm/terminal.py", "github:solanus-systems/mqterm/mqterm/terminal.py"]
],
"deps": [
["github:solanus-systems/amqc", "v0.1.0"],
["logging", "latest"]
],
"version": "0.1.0"
"version": "0.2.0"
}
Empty file removed pyproject.toml
Empty file.