summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2016-04-19 23:43:31 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2016-04-19 23:43:31 +0000
commit7e5eacaf9de70c8b6527cd8f6a878d7c631739bd (patch)
tree86459dd52418d482dc4b7ae7ed16cd53e450c634
parentaa80a361f4ed5657dd036bf2b0c72191e6fab540 (diff)
downloadpython-fastimport-git-7e5eacaf9de70c8b6527cd8f6a878d7c631739bd.tar.gz
Start on 0.9.7.
-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 bddc457..fe8319c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+0.9.7 UNRELEASED
+
0.9.6 2016-04-19
* Add python3.4 support (Jelmer Vernooij)
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index 0d17622..39a5a81 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, 6)
+__version__ = (0, 9, 7)
diff --git a/setup.py b/setup.py
index 8de81dc..1a9fa60 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from distutils.core import setup
-version = "0.9.6"
+version = "0.9.7dev"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",