Prepare for 2.0.1 release
Up the version and update the CHANGELOG
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 5612cf2..cdd1253 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,13 @@
+v2.0.1 (2020-09-30)
+-------------------
+- fix potential corruption when migrating repositories with existing
+ alternates to new object storage format
+- improve grok-fsck console output to be less misleading for large repo
+ collections (was misreporting obstrepo/total repo numbers)
+- use a faster repo search algorithm that doesn't needlessly recurse
+ into git repos themselves, once found
+
+
v2.0.0 (2020-09-21)
-------------------
Major rewrite to improve shared object storage and replication for VERY
diff --git a/contrib/python-grokmirror.spec b/contrib/python-grokmirror.spec
index 760d614..dda8bf2 100644
--- a/contrib/python-grokmirror.spec
+++ b/contrib/python-grokmirror.spec
@@ -4,7 +4,7 @@
%global userhome %{_sharedstatedir}/grokmirror
Name: python-%{srcname}
-Version: 2.0.0
+Version: 2.0.1
Release: 1%{?dist}
Summary: Framework to smartly mirror git repositories
@@ -85,5 +85,8 @@
%{_mandir}/*/*
%changelog
+* Wed Sep 30 2020 Konstantin Ryabitsev <konstantin@linuxfoundation.org> - 2.0.1-1
+- Update to 2.0.1
+
* Mon Sep 21 2020 Konstantin Ryabitsev <konstantin@linuxfoundation.org> - 2.0.0-1
- Initial 2.0.0 packaging
diff --git a/grokmirror/__init__.py b/grokmirror/__init__.py
index 999e9c0..2b657c6 100644
--- a/grokmirror/__init__.py
+++ b/grokmirror/__init__.py
@@ -38,7 +38,7 @@
from requests.packages.urllib3.util.retry import Retry
-VERSION = '2.0.1-dev'
+VERSION = '2.0.1'
MANIFEST_LOCKH = None
REPO_LOCKH = dict()
GITBIN = '/usr/bin/git'