summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2021-07-18 13:54:52 +0100
committerJelmer Vernooij <jelmer@jelmer.uk>2021-07-18 13:54:52 +0100
commitc172ba1e526488f668b1a9a493fd0fed3331bdd7 (patch)
treed023a200023a0e5c5aeb9f881fe2f779a36fe181
parent08038f961160190a5e144ac1594d4e6720e4de33 (diff)
downloadpython-fastimport-git-c172ba1e526488f668b1a9a493fd0fed3331bdd7.tar.gz
-rw-r--r--NEWS4
-rw-r--r--fastimport/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index a87b8dc..bb8b8f1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
-0.9.13 UNRELEASED
+0.9.13 2021-06-09
-0.9.12 2021-06-09
+0.9.12 2021-05-02
0.9.11 2021-04-12
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index 9d4701d..af494a5 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, 12)
+__version__ = (0, 9, 13)
diff --git a/setup.py b/setup.py
index 6d38778..5f705f2 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup
-version = "0.9.12"
+version = "0.9.13"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",