summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2021-07-18 13:55:20 +0100
committerJelmer Vernooij <jelmer@jelmer.uk>2021-07-18 13:55:20 +0100
commit1f0627dfdf7a9d7e15583362819ac1d32ad55e4d (patch)
tree54a27f9c9c5dad6bf0c97ba8646616002081fbfb
parentc172ba1e526488f668b1a9a493fd0fed3331bdd7 (diff)
downloadpython-fastimport-git-1f0627dfdf7a9d7e15583362819ac1d32ad55e4d.tar.gz
Start on 0.9.14.
-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 bb8b8f1..dab0900 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+0.9.14 UNRELEASED
+
0.9.13 2021-06-09
0.9.12 2021-05-02
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index af494a5..c062341 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, 13)
+__version__ = (0, 9, 14)
diff --git a/setup.py b/setup.py
index 5f705f2..353f0fd 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup
-version = "0.9.13"
+version = "0.9.14"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",