diff --git a/uasyncio/metadata.txt b/uasyncio/metadata.txt index 162a8b26..04de84a0 100644 --- a/uasyncio/metadata.txt +++ b/uasyncio/metadata.txt @@ -1,6 +1,6 @@ srctype = micropython-lib type = package -version = 1.4 +version = 1.4.1 author = Paul Sokolovsky desc = Lightweight asyncio-like library for MicroPython, built around native Python coroutines. long_desc = README.rst diff --git a/uasyncio/setup.py b/uasyncio/setup.py index d9b14ea9..308ace82 100644 --- a/uasyncio/setup.py +++ b/uasyncio/setup.py @@ -7,13 +7,13 @@ sys.path.append("..") import optimize_upip setup(name='micropython-uasyncio', - version='1.4', + version='1.4.1', description='Lightweight asyncio-like library for MicroPython, built around native Python coroutines.', long_description=open('README.rst').read(), url='https://github.com/micropython/micropython-lib', author='Paul Sokolovsky', author_email='micro-python@googlegroups.com', - maintainer='MicroPython Developers', + maintainer='micropython-lib Developers', maintainer_email='micro-python@googlegroups.com', license='MIT', cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},