From 23ff6305c3a0d27de3def8d5b4447ac782c28587 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 13 Nov 2016 15:18:30 +0300 Subject: [PATCH] uasyncio: Release 1.0. --- uasyncio/metadata.txt | 2 +- uasyncio/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/uasyncio/metadata.txt b/uasyncio/metadata.txt index 23ad0c52..3029b41a 100644 --- a/uasyncio/metadata.txt +++ b/uasyncio/metadata.txt @@ -1,6 +1,6 @@ srctype = micropython-lib type = package -version = 0.9.1 +version = 1.0 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 62bde52f..28c050e6 100644 --- a/uasyncio/setup.py +++ b/uasyncio/setup.py @@ -7,7 +7,7 @@ sys.path.append("..") import optimize_upip setup(name='micropython-uasyncio', - version='0.9.1', + version='1.0', 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',