summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2014-03-01 15:36:16 +0000
committerJelmer Vernooij <jelmer@samba.org>2014-03-01 15:36:16 +0000
commit9d727cb3eef310efa9f4ff04d8cea0ade5539a2d (patch)
tree76e7799cca1089529715662a6b5de1ce27bbfdc8
parentf1f287226fa10c3c3aee62cb0d8d1d433d1bbcd0 (diff)
downloadpython-fastimport-git-9d727cb3eef310efa9f4ff04d8cea0ade5539a2d.tar.gz
Start on 0.9.4.
-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 9bb827a..03ab7a7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+0.9.4 UNRELEASED
+
0.9.3 2014-03-01
* Remove unused and untested helper single_plural,
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index b6d6fa0..3f2ec5a 100644
--- a/fastimport/__init__.py
+++ b/fastimport/__init__.py
@@ -15,4 +15,4 @@
"""Fastimport streams."""
-__version__ = (0, 9, 3)
+__version__ = (0, 9, 4)
diff --git a/setup.py b/setup.py
index d097eb0..61736f3 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from distutils.core import setup
-version = "0.9.3"
+version = "0.9.4dev"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",