diff --git a/uasyncio/metadata.txt b/uasyncio/metadata.txt index 3029b41a..ceb57d3a 100644 --- a/uasyncio/metadata.txt +++ b/uasyncio/metadata.txt @@ -1,6 +1,6 @@ srctype = micropython-lib type = package -version = 1.0 +version = 1.0.1 author = Paul Sokolovsky long_desc = Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess. depends = errno, uasyncio.core diff --git a/uasyncio/setup.py b/uasyncio/setup.py index 28c050e6..99ab7465 100644 --- a/uasyncio/setup.py +++ b/uasyncio/setup.py @@ -7,7 +7,7 @@ sys.path.append("..") import optimize_upip setup(name='micropython-uasyncio', - version='1.0', + version='1.0.1', description='uasyncio module for MicroPython', long_description='Lightweight asyncio-like library built around native Python coroutines, not around un-Python devices like callback mess.', url='https://github.com/micropython/micropython-lib',