From 5404540992292467483c66aaf320bed54a37c635 Mon Sep 17 00:00:00 2001 From: Rallen Date: Thu, 3 Sep 2020 22:02:35 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 8 ++++++++ src/version.py | 10 +++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b383ee7..6431c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.2.0 +- Replace "Twitch Prime" with "Prime Gaming" +- Add timeout for library updates + - Owned games: every 10 minutes + - Installed games: every minute +- Fetch installed games from SQLite database instead of registry +- Minor improvements + ## 0.1.1 - Add OSCompatability check to allow installation of games diff --git a/src/version.py b/src/version.py index 78ae639..2211bbf 100644 --- a/src/version.py +++ b/src/version.py @@ -1,6 +1,14 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" __changelog__ = { + "0.2.0": ''' + - Replace "Twitch Prime" with "Prime Gaming" + - Add timeout for library updates + - Owned games: every 10 minutes + - Installed games: every minute + - Fetch installed games from SQLite database instead of registry + - Minor improvements + ''', "0.1.1": ''' - Add OSCompatability check to allow installation of games ''',