We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb1ce86 commit a7e69aaCopy full SHA for a7e69aa
.github/workflows/publish-twine.yaml
@@ -20,7 +20,7 @@ jobs:
20
- name: Build sdist
21
run: |
22
python setup.py sdist
23
- python setup.py wheel
+ python setup.py bdist_wheel
24
- name: Publish to PyPI
25
uses: pypa/gh-action-pypi-publish@release/v1
26
with:
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## [0.4.2] - 2023-07-31
4
+- Small type annotation clean ups.
5
+- Publish wheels.
6
+
7
## [0.4.1] - 2022-10-05
8
- Unbreak process suspension with blessed
9
- Remove xforms.
curtsies/__init__.py
@@ -1,5 +1,5 @@
"""Terminal-formatted strings"""
-__version__ = "0.4.1"
+__version__ = "0.4.2"
from .window import FullscreenWindow, CursorAwareWindow
from .input import Input
0 commit comments