From 5e1df5601399d29f4e5ef5a372bab40694fddec4 Mon Sep 17 00:00:00 2001 From: Dominik Krupke Date: Sat, 28 Oct 2023 11:28:08 +0200 Subject: [PATCH] v1.1.1 --- README.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b50a1ab..2c8cad0 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,7 @@ you to modify and use the code for the competition. ## Changelog +- **1.1.1:** A long on Windows is only 32bit, so changed to using the explicit `int64_t` type. - **1.1.0:** The previous workaround could lead to excessive memory usage. Changed quadtree implementation to keep large elements on higher levels even if the node is full. Gives a warning in this case. diff --git a/setup.py b/setup.py index 4d07f49..4e3dc9a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): setup( # https://scikit-build.readthedocs.io/en/latest/usage.html#setup-options name="cgshop2024_pyutils", - version="1.1.0", + version="1.1.1", author="Dominik Krupke", license="LICENSE", description="Utilities for verifying solutions of the CG:SHOP 2024 Competition.",