diff --git a/ChangeLog.md b/ChangeLog.md index 81faa2a..b88e08b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # Gitchart ChangeLog -## Version 2.0.0 (under dev) +## Version 2.0.0 (2021-11-24) - Drop Python 2 support, Python 3.6 is now required. - Add option `-S` / `--style` to choose Pygal style, defaults to custom style `gitchart_light`. diff --git a/gitchart.py b/gitchart.py index 5fceb00..7e4dd7b 100755 --- a/gitchart.py +++ b/gitchart.py @@ -48,7 +48,7 @@ import pygal -VERSION = '2.0.0-dev' +VERSION = '2.0.0' ISSUES_REGEX_DEFAULT = re.compile( r'(?:close|closes|closed|fix|fixes|fixed|resolve|resolves|resolved)' diff --git a/setup.py b/setup.py index 2f266a9..5d6c46e 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name='gitchart', - version='2.0.0-dev', + version='2.0.0', description=DESCRIPTION, long_description=readme, long_description_content_type='text/markdown',