Skip to content

Commit

Permalink
version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rohbotics committed Aug 5, 2017
1 parent 015fd92 commit f90a467
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
13 changes: 11 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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 <rohan@aleopile.com> Sun, 09 Jul 2017 22:43:20 -0700
-- Rohan Agrawal <send2arohan@gmail.com> Fri, 04 Aug 2017 21:00:14 -0700
8 changes: 4 additions & 4 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Source: pifi
Maintainer: Rohan Agrawal <[email protected]>
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
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pifi/pifi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',

Expand Down

0 comments on commit f90a467

Please sign in to comment.