# HG changeset patch # User Thomas De Schampheleire # Date 2021-05-27 21:37:47 # Node ID 86cde1911b692a52b832efae1bb562115645a4ce # Parent cf4c300fe036376557c6bb56727d7c4f6260d2f9 # Parent 7ac728ed359a7d84dbbf02ddfd19fcb9c7bca978 merge stable diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -80,3 +80,4 @@ aa0a637fa6f635a5e024fa56b19ed2a2dacca857 a22edac2be58eaf68d1940d4dfeb88fadbabb43a 0.6.1 22bfca5da6f56738f6220d24bb6ce2f9bc4f9b1e 0.6.2 213450cbdc11fff8508ba25101dc05ab74048e55 0.6.3 +7324ff1929d558075500ca483889b28e904ef934 0.7.0 diff --git a/MANIFEST.in b/MANIFEST.in --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,6 +12,7 @@ include conftest.py include dev_requirements.txt include development.ini include pytest.ini +include pytype_requirements.txt include requirements.txt include tox.ini recursive-include docs * diff --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -36,7 +36,7 @@ import celery if sys.version_info < (3, 6): raise Exception('Kallithea requires python 3.6 or later') -VERSION = (0, 6, 99) +VERSION = (0, 7, 0) BACKENDS = { 'hg': 'Mercurial repository', 'git': 'Git repository',