From cdea2d94cc761c8819b7e94ddae9fa0f8e91f8a0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 14 Jan 2018 11:34:44 +0200 Subject: [PATCH] urequests: Release 0.5.2. --- urequests/metadata.txt | 2 +- urequests/setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/urequests/metadata.txt b/urequests/metadata.txt index 5d3033c2..e84d96ba 100644 --- a/urequests/metadata.txt +++ b/urequests/metadata.txt @@ -1,4 +1,4 @@ srctype = micropython-lib type = module -version = 0.5.1 +version = 0.5.2 author = Paul Sokolovsky diff --git a/urequests/setup.py b/urequests/setup.py index 6fc9f88a..40dd5347 100644 --- a/urequests/setup.py +++ b/urequests/setup.py @@ -7,13 +7,13 @@ sys.path.append("..") import optimize_upip setup(name='micropython-urequests', - version='0.5.1', + version='0.5.2', description='urequests module for MicroPython', long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.", 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},