diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3ecc1..ffd813f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v1.0.2 (2022/08/28) + +- Verified the examples. +- Implemented a bugfix for EXAMPLE_SYNTHETIC_REPLAYPACKS, the replaypack was set to be downloaded from URL of a branch that no longer exists. + ## v1.0.1 (2022/08/28) - Implemented a bugfix for EXAMPLE_SYNTHETIC_REPLAYPACKS, the replaypack was set to be downloaded from URL of a branch that no longer exists. diff --git a/pyproject.toml b/pyproject.toml index 8e3f08d..d3f8cb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sc2_datasets" -version = "1.0.1" +version = "1.0.2" description = "Library providing PyTorch and PyTorch Lightning API for pre-processed StarCraft II dataset SC2EGSetDataset and other datasets." authors = ["Andrzej BiaƂecki", "Andrzej Szczap"] license = "GNU General Public License v3.0" diff --git a/src/sc2_datasets/available_replaypacks.py b/src/sc2_datasets/available_replaypacks.py index 58fbade..1624aff 100644 --- a/src/sc2_datasets/available_replaypacks.py +++ b/src/sc2_datasets/available_replaypacks.py @@ -5,7 +5,7 @@ EXAMPLE_SYNTHETIC_REPLAYPACKS = [ ( "2022_TestReplaypack", - "https://github.com/Kaszanas/SC2EGSet_Dataset/raw/working_on_docs/tests/test_files/2022_TestReplaypack.zip", # noqa + "https://github.com/Kaszanas/SC2EGSet_Dataset/raw/main/tests/test_files/2022_TestReplaypack.zip", # noqa ) ]