From bde52eb6814f298733c23ef955a977be3c8e1d69 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 18 Aug 2022 10:18:50 +0100 Subject: [PATCH] Bump to v0.0.2 --- phew/__init__.py | 6 ++++-- setup.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/phew/__init__.py b/phew/__init__.py index 5d08a45..a412c2c 100644 --- a/phew/__init__.py +++ b/phew/__init__.py @@ -1,5 +1,7 @@ -# highly recommended to set a lowish garbage collection threshold -# to minimise memory fragmentation as we sometimes want to +__version__ = "0.0.2" + +# highly recommended to set a lowish garbage collection threshold +# to minimise memory fragmentation as we sometimes want to # allocate relatively large blocks of ram. import gc gc.threshold(50000) diff --git a/setup.py b/setup.py index fdfdb98..206a7c1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="micropython-phew", - version="0.0.1-post1", + version="0.0.2", description="A small webserver and templating library specifically designed for MicroPython on the Pico W.", long_description=open("README.md").read(), long_description_content_type="text/markdown",