Skip to content

Commit

Permalink
Version 1.0.0 Final
Browse files Browse the repository at this point in the history
  • Loading branch information
alaudet committed Mar 2, 2016
1 parent 3136e69 commit 8a626bf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
=====================================


Expand All @@ -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
Expand Down
6 changes: 4 additions & 2 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions conf/raspisump.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-<package name> instead of python3-<package name>
To install for Python2 simply use pip instead of pip3 and for package installs
use with apt-get python-<package name> instead of python3-<package name>

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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup
import os
version = '1.0.0b5'
version = '1.0.0'

homedir = '/home/pi/raspi-sump/'

Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 8a626bf

Please sign in to comment.