diff --git a/CHANGELOG.md b/CHANGELOG.md index ba8a8b1..bfdec69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog +## v2.13.3 (2022-08-08) + +### Fix + +* Fixed a bug where jpeg maps would no show in mapstats browser source. + + ## v2.13.2 (2022-07-24) ### Changes diff --git a/inno-setup/scct.iss b/inno-setup/scct.iss index 89a2981..d92cb03 100644 --- a/inno-setup/scct.iss +++ b/inno-setup/scct.iss @@ -2,8 +2,8 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "StarCraft Casting Tool" -#define MyAppVersion "2.13.2" -#define MyDataVersion "2.13.2" +#define MyAppVersion "2.13.3" +#define MyDataVersion "2.13.3" #define MyAppPublisher "team pheeniX" #define MyAppURL "https://teampheenix.github.io/StarCraft-Casting-Tool/" #define MyAppExeName "StarCraft-Casting-Tool.exe" diff --git a/scctool/__init__.py b/scctool/__init__.py index 36552f2..7c65ff1 100644 --- a/scctool/__init__.py +++ b/scctool/__init__.py @@ -12,7 +12,7 @@ logger = logging.getLogger(__name__) -__version__ = "2.13.2" +__version__ = "2.13.3" __latest_version__ = __version__ __new_version__ = False diff --git a/setup.py b/setup.py index afcc044..14b6104 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = f.read() setup(name='StarCraftCastingTool', - version='2.13.2', + version='2.13.3', description=(''), long_description=long_description, long_description_content_type='text/markdown',