From d35e23c74fb47ab918980773d83b2ff7259e41e2 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 5 Jul 2022 00:08:21 +0200 Subject: [PATCH] Updated version and dependencies --- README.md | 2 +- nomadnet/_version.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a91f9cf..072a4c6 100755 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ For a native Android application with a graphical user interface, have a look at ### Docker Images -Nomad Network is automatically published as a docker image on Github Packages. Image tags are one of either `master` (for the very latest commit) or the version number (eg `0.1.8`) for a specific release. +Nomad Network is automatically published as a docker image on Github Packages. Image tags are one of either `master` (for the very latest commit) or the version number (eg `0.2.0`) for a specific release. ```sh $ docker pull ghcr.io/markqvist/nomadnet:master diff --git a/nomadnet/_version.py b/nomadnet/_version.py index c11f861..d3ec452 100644 --- a/nomadnet/_version.py +++ b/nomadnet/_version.py @@ -1 +1 @@ -__version__ = "0.1.9" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py index 6d4bfdc..71128e0 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,6 @@ setuptools.setup( entry_points= { 'console_scripts': ['nomadnet=nomadnet.nomadnet:main'] }, - install_requires=['rns>=0.3.8', 'lxmf>=0.1.7', 'urwid>=2.1.2'], + install_requires=['rns>=0.3.9', 'lxmf>=0.1.7', 'urwid>=2.1.2'], python_requires='>=3.6', )