diff --git a/CHANGELOG b/CHANGELOG index 9ccfcbd..83245ed 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +## [2.1.0] - 2021-01-03 + +### Tech +- Type declarations, mypy for static type checker +- Use github actions for running builds +- Bump dependencies + +### Added +- Show context menu on left click for non-darwin platforms +- Bearer token authentication by @Deuchnord +- Enhance config windows UX by @Deuchnord +- Snaps are automatically pushed to https://snapcraft.io/buildnotify-test + ## [2.0.0] - 2019-08-16 ### Added diff --git a/buildnotifylib/version.py b/buildnotifylib/version.py index 695a36e..d74a986 100644 --- a/buildnotifylib/version.py +++ b/buildnotifylib/version.py @@ -1,6 +1,6 @@ from os import getenv -VERSION = "2.0.0" +VERSION = "2.1.0" def version(key='BUILD_LABEL') -> str: diff --git a/setup.py b/setup.py index 7d85b64..88173bd 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def readme(): def version(): - return getenv('BUILD_VERSION', "2.0.0") + return getenv('BUILD_VERSION', "2.1.0") setup(name='BuildNotify',