Release 1.0.0 with minor bugfixes

Small bugfix which caused repacks not to run as frequenly on the master
repo location due to on-disk fingerprint files not being updated.

Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
diff --git a/README.rst b/README.rst
index 7200f4d..5047a7e 100644
--- a/README.rst
+++ b/README.rst
@@ -5,10 +5,10 @@
 --------------------------------------------
 
 :Author:    konstantin@linuxfoundation.org
-:Date:      2016-02-29
+:Date:      2016-04-06
 :Copyright: The Linux Foundation and contributors
 :License:   GPLv3+
-:Version:   0.4.3-pre
+:Version:   1.0.0
 
 DESCRIPTION
 -----------
diff --git a/grokmirror/__init__.py b/grokmirror/__init__.py
index b6479df..37523a2 100644
--- a/grokmirror/__init__.py
+++ b/grokmirror/__init__.py
@@ -29,7 +29,7 @@
 
 from git import Repo
 
-VERSION = '0.4.3'
+VERSION = '1.0.0'
 MANIFEST_LOCKH = None
 REPO_LOCKH = {}
 
diff --git a/grokmirror/fsck.py b/grokmirror/fsck.py
index 63a0b10..6012f5a 100755
--- a/grokmirror/fsck.py
+++ b/grokmirror/fsck.py
@@ -358,7 +358,7 @@
             if 'fingerprint' in status[fullpath].keys():
                 oldfpr = status[fullpath]['fingerprint']
 
-            fpr = grokmirror.get_repo_fingerprint(config['toplevel'], gitdir)
+            fpr = grokmirror.get_repo_fingerprint(config['toplevel'], gitdir, force=True)
 
             if fpr != oldfpr or force:
                 full_repack = False
diff --git a/python-grokmirror.spec b/python-grokmirror.spec
index 009cae6..57e7f43 100644
--- a/python-grokmirror.spec
+++ b/python-grokmirror.spec
@@ -5,8 +5,8 @@
 %endif
 
 Name:           python-grokmirror
-Version:        0.4.3
-Release:        0.pre.1%{?dist}
+Version:        1.0.0
+Release:        1%{?dist}
 Summary:        Framework to smartly mirror git repositories
 
 License:        GPLv3+
@@ -53,6 +53,9 @@
 
 
 %changelog
+* Wed Apr 06 2016 Konstantin Ryabitsev <konstantin@linuxfoundation.org> - 1.0.0-1
+- Version 1.0.0 with minor bugfixes
+
 * Mon Feb 29 2016 Konstantin Ryabitsev <konstantin@linuxfoundation.org> - 0.4.3-1
 - Version 0.4.3 with support for occasional full repacks
 
diff --git a/setup.py b/setup.py
index 103589e..584ede2 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@
 def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read()
 
-VERSION='0.4.3'
+VERSION='1.0.0'
 NAME='grokmirror'
 
 setup(