From f242abcf7592f9361e1571ebeea20c98b2639e56 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 13 May 2021 16:42:36 +0200 Subject: [PATCH] Version bump --- RNS/vendor/__init__.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RNS/vendor/__init__.py b/RNS/vendor/__init__.py index e3164b0..344f9db 100755 --- a/RNS/vendor/__init__.py +++ b/RNS/vendor/__init__.py @@ -1,5 +1,7 @@ import os import glob +__version__ = "0.1.9" + modules = glob.glob(os.path.dirname(__file__)+"/*.py") __all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')] diff --git a/setup.py b/setup.py index 59db174..8f3c24c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="rns", - version="0.1.8", + version="0.1.9", author="Mark Qvist", author_email="mark@unsigned.io", description="Self-configuring, encrypted and resilient mesh networking stack for LoRa, packet radio, WiFi and everything in between",