From f90a467451b38ee6bf35b81023f055a5eb8a47cb Mon Sep 17 00:00:00 2001 From: Rohan Agrawal Date: Fri, 4 Aug 2017 22:07:45 -0700 Subject: [PATCH] version 0.2.0 --- debian/changelog | 13 +++++++++++-- debian/control | 8 ++++---- debian/rules | 2 +- pifi/pifi.py | 2 +- setup.py | 2 +- 5 files changed, 18 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2ebbec9..81b54f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,16 @@ -pifi (0.1.3) UNRELEASED; urgency=medium +pifi (0.2.0) xenial; urgency=medium + + * Switch to Python 3 + * Handle connection settings in the cli part + * Support passwordless networks + * Modularize the code + + -- Rohan Agrawal Fri, 04 Aug 2017 21:42:36 -0700 + +pifi (0.1.3) xenial; urgency=medium * create /etc/pifi_pending if it doesn't exist * include a /etc/pifi_pending file in the deb * have pifi --version report the right version - -- Rohan Agrawal Sun, 09 Jul 2017 22:43:20 -0700 + -- Rohan Agrawal Fri, 04 Aug 2017 21:00:14 -0700 diff --git a/debian/control b/debian/control index 12c2ee9..925a287 100644 --- a/debian/control +++ b/debian/control @@ -2,10 +2,10 @@ Source: pifi Maintainer: Rohan Agrawal Section: misc Priority: optional -Standards-Version: 3.9.2 -Build-Depends: debhelper (>= 9), dh-python, dh-systemd (>= 1.5), python-all, python-setuptools +Standards-Version: 3.9.7 +Build-Depends: debhelper (>= 9), dh-python, dh-systemd (>= 1.5), python3-all, python3-setuptools Package: pifi Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} -Description: Raspberry Pi Wifi Tools +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends} +Description: Raspberry Pi Wifi Provisioning Tools diff --git a/debian/rules b/debian/rules index 32f2e9d..315b09b 100755 --- a/debian/rules +++ b/debian/rules @@ -5,4 +5,4 @@ export PYBUILD_NAME=pifi #export PYBUILD_INSTALL_ARGS='--install-lib=/usr/share/pifi/ --install-scripts=/usr/share/pifi/' %: - dh $@ --with systemd --with python2 --buildsystem=pybuild + dh $@ --with systemd --with python3 --buildsystem=pybuild diff --git a/pifi/pifi.py b/pifi/pifi.py index 69e52cd..fc0657b 100644 --- a/pifi/pifi.py +++ b/pifi/pifi.py @@ -112,7 +112,7 @@ def list_pending(): con['connection']['id']) def main(): - arguments = docopt(__doc__, version='pifi version 0.1.3') + arguments = docopt(__doc__, version='pifi version 0.2.0') if arguments['status']: status() diff --git a/setup.py b/setup.py index 5bbd23a..326d548 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='pifi', - version='0.1.3', + version='0.2.0', description='Wifi provisioning tools for robots with Raspberry Pis', url='https://github.com/rohbotics/pifi',