summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--fastimport/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 28329c3..48c14c3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-0.9.10 UNRELEASED
+0.9.10 2021-04-11
* Declare python 3.5 requirement in setup.py. (Jelmer Vernooij)
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index 546a044..a168fe1 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, 9)
+__version__ = (0, 9, 10)
diff --git a/setup.py b/setup.py
index 9e86117..545931b 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup
-version = "0.9.9"
+version = "0.9.10"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",