summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2018-04-15 13:25:49 +0100
committerJelmer Vernooij <jelmer@jelmer.uk>2018-04-15 13:25:49 +0100
commitabe11561f0570cb88f47d7021e1de1f1f2cc487c (patch)
treefdaad8a66891eaa9e087deab4c22aff06a63af60
parent01403290ca0e7426423a4283b5cc80ee68db0e1f (diff)
downloadpython-fastimport-git-abe11561f0570cb88f47d7021e1de1f1f2cc487c.tar.gz
Release 0.9.7.fastimport-0.9.7
-rw-r--r--NEWS2
-rw-r--r--fastimport/__init__.py2
-rwxr-xr-xsetup.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index ef200d4..e644c40 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-0.9.7 UNRELEASED
+0.9.7 2018-04-15
* Don't attempt to encode bytestrings in utf8_bytes_helper().
(Jelmer Vernooij, #1647101)
diff --git a/fastimport/__init__.py b/fastimport/__init__.py
index 39a5a81..0b37616 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, 7)
+__version__ = (0, 9, 8)
diff --git a/setup.py b/setup.py
index 815c436..fb486db 100755
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from distutils.core import setup
-version = "0.9.7dev"
+version = "0.9.7"
setup(name="fastimport",
description="VCS fastimport/fastexport parser",
@@ -11,7 +11,7 @@ setup(name="fastimport",
maintainer="Jelmer Vernooij",
maintainer_email="jelmer@jelmer.uk",
license="GNU GPL v2 or later",
- url="htps://github.com/jelmer/python-fastimport",
+ url="https://github.com/jelmer/python-fastimport",
packages=['fastimport', 'fastimport.tests', 'fastimport.processors'],
scripts=[
'bin/fast-import-query',