From d4ce05372665c3537f48e061cbab6bbea82910f4 Mon Sep 17 00:00:00 2001 From: Walter Doekes Date: Wed, 31 Jul 2013 14:21:56 +0200 Subject: [PATCH] Add .gitignore (and bump version to next dev version). --- .gitignore | 4 ++++ CHANGES.md | 8 ++++---- pstorelib/__init__.py | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69b754 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pyc +*.pyo +*.sw? +pstore/settings.py diff --git a/CHANGES.md b/CHANGES.md index c309ac0..61c2712 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,10 +3,12 @@ pstore :: Python Protected Password Store The list of changes. +????-??-??: 0.96.1dev +--------------------- + * Move to github. 2013-07-31: 0.96 ------------------ - +---------------- * Fix bug with stdin not ending after a single CTRL+D. * Improve readability of Markdown files. * Clean up documentation, fix unit tests. @@ -16,9 +18,7 @@ The list of changes. * Take version info from the CHANGES.md. * Use a single version number all over the project. - 2013-04-15: 0.95rc4 ------------------- - * There was no changelog. * vim: set syntax=markdown tw=72: diff --git a/pstorelib/__init__.py b/pstorelib/__init__.py index df44c71..0b2941f 100644 --- a/pstorelib/__init__.py +++ b/pstorelib/__init__.py @@ -25,5 +25,5 @@ 'server') # http://docs.python.org/2/tutorial/modules.html#importing-from-a-package -VERSION = (0, 96) -VERSION_STRING = '0.96' +VERSION = (0, 96, 1, 'dev') +VERSION_STRING = '0.96.1dev'