summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-01-31 01:44:49 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-01-31 01:44:49 +0100
commitabaa09f089abd55f8f19e3aa5e69cf162d16cee5 (patch)
treefec368a3de18f8c34b9300e0a0fd7e412384b2ed
parentd36789a80b1898155d2b8a8488df3bb7802e1e41 (diff)
downloadpython-fastimport-git-abaa09f089abd55f8f19e3aa5e69cf162d16cee5.tar.gz
Start on 0.9.1.
-rw-r--r--NEWS3
-rw-r--r--fastimport/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 5 insertions, 2 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..38b4ab4
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,3 @@
+0.9.0 2011-01-30
+
+ Initial release.
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index ea05370..0e2570e 100644
--- a/fastimport/__init__.py
+++ b/fastimport/__init__.py
@@ -16,4 +16,4 @@
"""Fastimport streams."""
-__version__ = (0, 9, 0)
+__version__ = (0, 9, 1)
diff --git a/setup.py b/setup.py
index 9d4c808..af08266 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from distutils.core import setup
-version = "0.9.0"
+version = "0.9.1dev"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",