From 8a626bfe2b6579f9dc610814fc87f041c8f7ac16 Mon Sep 17 00:00:00 2001 From: Al Audet Date: Tue, 1 Mar 2016 20:00:11 -0500 Subject: [PATCH] Version 1.0.0 Final --- README.md | 3 ++- changelog | 6 ++++-- conf/raspisump.conf | 7 ++++--- docs/install.md | 4 ++-- setup.py | 4 ++-- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5a5521..e82679d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Ultrasonic Sensor (HC-SR04) Currently the system monitors the water level in your pit at defined intervals. It sends email sms alerts if the water reaches a critical level, indicating a possible sump pump failure. -New Version 1.0.0Beta Python3 compatible +New Version 1.0.0 Python3 compatible ===================================== @@ -27,6 +27,7 @@ QUICK INSTALL Python 3 Recommended for Raspbian Jessie ===================================== + Install the pip package manager (if not present on your pi). sudo apt-get install python3-pip diff --git a/changelog b/changelog index 19a0445..1559618 100644 --- a/changelog +++ b/changelog @@ -2,8 +2,10 @@ Raspi-Sump Changelog ==================== Version 1.0.0 -Python 3 compatible -Important info added for Gmail users to send alerts. See issue tracker; +- Python 3 compatible +- This version has no new functionality. It is given the first major version 1.0.0 as +it is now fully Python2 and Python3 compatible. +- Important info added for Gmail users to send alerts. See issue tracker; https://github.com/alaudet/raspi-sump/issues/6 Version 0.8.0 diff --git a/conf/raspisump.conf b/conf/raspisump.conf index a555793..ba55718 100644 --- a/conf/raspisump.conf +++ b/conf/raspisump.conf @@ -62,13 +62,14 @@ alert_when = high [email] -# ***Important information for gmail users*** +# ***Important information for Gmail users only.*** # ***Please read this thread on allowing applications to send # ***email from Googles Gmail service which have implemented ouath2. -# ***Raspi-sump does not implement oauth2 so you will need to use a workaround -# ***as outlined here # ***https://github.com/alaudet/raspi-sump/issues/6 +# ***Raspi-sump does not implement oauth2 for authentication so you will need +# ***to use a workaround for gmail to send alerts. + # Set an appropriate interval for alerts. If you are taking readings at short # intervals it is possible to bombard yourself with SMS text messages when the # water reaches a critical level. For example if you are taking a reading diff --git a/docs/install.md b/docs/install.md index ec4ba89..93bea46 100644 --- a/docs/install.md +++ b/docs/install.md @@ -5,8 +5,8 @@ If you choose to do this you do it at your own risk. Installation instructions assume Python3 on Raspbian -To install for Python2 simply use pip instead of pip3 and for packages install -with apt-get python- instead of python3- +To install for Python2 simply use pip instead of pip3 and for package installs +use with apt-get python- instead of python3- If using the older Raspbian Wheezy release I recommend you stick with the Python 2 install to avoid having to install Matplotlib with pip instead of diff --git a/setup.py b/setup.py index 43d6150..3d70acf 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup import os -version = '1.0.0b5' +version = '1.0.0' homedir = '/home/pi/raspi-sump/' @@ -35,7 +35,7 @@ description='A sump pit monitoring system for Raspberry Pi', long_description=open("./README.md", "r").read(), classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "Natural Language :: English",