Skip to content

Commit 6abf007

Browse files
committed
chore: release 0.6
1 parent 07fe4de commit 6abf007

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: DEVELOPER.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Creating a release
88
- Ensure that the ``version`` in ``serial_asyncio/__init__.py`` is updated
99
and in the form of major.minor[.patchlevel]
1010
- Ensure all changes, including version, is committed then create a tag with
11-
the exact same value as the version (e.g. "0.5")
11+
the same value as the version but prefixed with a ``v`` (e.g. "v0.5")
1212
- Push to GitHub, merge into master if it is a branch. The GitHub Actions
1313
are set-up to build the default branch.
1414
- Inspect the built wheel and tar.gz files for correctness, test.

Diff for: serial_asyncio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
except ImportError:
2626
termios = None
2727

28-
__version__ = '0.5'
28+
__version__ = '0.6'
2929

3030

3131
class SerialTransport(asyncio.Transport):

0 commit comments

Comments
 (0)