# HG changeset patch # User Oben Sonne # Date 1413666803 -7200 # Sat Oct 18 23:13:23 2014 +0200 # Node ID a9c809a752d4aaeadf87c00271487a6c326a23f8 # Parent 0bc8eed0c6d3f4dc65661e76cb166703c6080d7b prepare release 0.2 diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -141,7 +141,7 @@ Run:: pip install deeno - + If you want to interact with Postgres, you also need to install the *psycopg2* module:: @@ -211,6 +211,13 @@ Changes ------- +Version 0.2 +~~~~~~~~~~~ + +- Minor exception handling improvements (e.g. use distinct exceptions when a + relation is not found). +- Minor README improvements. + Version 0.1 ~~~~~~~~~~~ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() -version = '0.1' +version = '0.2' install_requires = []