We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07fe4de commit 6abf007Copy full SHA for 6abf007
DEVELOPER.rst
@@ -8,7 +8,7 @@ Creating a release
8
- Ensure that the ``version`` in ``serial_asyncio/__init__.py`` is updated
9
and in the form of major.minor[.patchlevel]
10
- Ensure all changes, including version, is committed then create a tag with
11
- the exact same value as the version (e.g. "0.5")
+ the same value as the version but prefixed with a ``v`` (e.g. "v0.5")
12
- Push to GitHub, merge into master if it is a branch. The GitHub Actions
13
are set-up to build the default branch.
14
- Inspect the built wheel and tar.gz files for correctness, test.
serial_asyncio/__init__.py
@@ -25,7 +25,7 @@
25
except ImportError:
26
termios = None
27
28
-__version__ = '0.5'
+__version__ = '0.6'
29
30
31
class SerialTransport(asyncio.Transport):
0 commit comments