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
commit7936bc2148246c658a83143f53194099a999f0b3 (patch)
treefec368a3de18f8c34b9300e0a0fd7e412384b2ed
parentab6fbc8990023f1ea47abca0f6089c9cbe8c7b5a (diff)
downloadpython-fastimport-7936bc2148246c658a83143f53194099a999f0b3.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",