summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2014-07-06 01:50:45 +0200
committerJelmer Vernooij <jelmer@samba.org>2014-07-06 01:50:45 +0200
commit10feb513afbc0c35b969351e260d57a3490d719b (patch)
tree9dde98471cb540d11049977c38a0170bfb3cce7b
parent2568622c19debd80d61b3b2ded91df3fbf537744 (diff)
downloadpython-fastimport-git-10feb513afbc0c35b969351e260d57a3490d719b.tar.gz
Start on fastimport 0.9.5.
-rw-r--r--NEWS2
-rw-r--r--fastimport/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index c3620f8..2ecde91 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+0.9.5 UNRELEASED
+
0.9.4 2014-07-04
* Get handlers from class object using getattr() for possible inheritance
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index 37265b8..e515366 100644
--- a/fastimport/__init__.py
+++ b/fastimport/__init__.py
@@ -30,4 +30,4 @@ it can be used by other projects. Use it like so:
processor.process(parser.parse())
"""
-__version__ = (0, 9, 4)
+__version__ = (0, 9, 5)
diff --git a/setup.py b/setup.py
index 366aa1d..a27e766 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from distutils.core import setup
-version = "0.9.4"
+version = "0.9.5dev"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",