diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a694fe..636fb39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.5.2 +- Fixed library not being properly updated as result of missing game title +- Fixed game uninstall not working + ## 0.5.1 - Fixed library games not being updated/shown diff --git a/current_version.json b/current_version.json index 7d4e1fb..7131a91 100644 --- a/current_version.json +++ b/current_version.json @@ -2,7 +2,7 @@ "tag": "v0.5.1", "assets": [ { - "browser_download_url": "https://github.com/Rall3n/galaxy-integration-amazon/releases/download/v0.5.1/windows.zip", + "browser_download_url": "https://github.com/Rall3n/galaxy-integration-amazon/releases/download/v0.5.2/windows.zip", "name": "windows.zip" } ] diff --git a/src/version.py b/src/version.py index b7f3af4..b36a54e 100644 --- a/src/version.py +++ b/src/version.py @@ -1,6 +1,10 @@ -__version__ = "0.5.1" +__version__ = "0.5.2" __changelog__ = { + "0.5.2": ''' + - Fixed library not being properly updated as result of missing game title + - Fixed game uninstall not working + ''', "0.5.1": ''' - Fixed library games not being updated/shown ''',