From 48afc5e50bc63a3224b9273e44f902c892664828 Mon Sep 17 00:00:00 2001 From: Matej Straka Date: Thu, 3 Oct 2024 00:21:36 +0200 Subject: [PATCH] chore(master): release 0.5.2 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ setup.py | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 210d290..258342d 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.5.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2038f11..ab08cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## [0.5.2](https://github.com/strakam/Generals-RL/compare/v0.5.1...v0.5.2) (2024-10-02) + + +### 🐛 Bug Fixes + +* Add missing requirements ([8c63062](https://github.com/strakam/Generals-RL/commit/8c63062b1ca60591e35f36d368eb28da4339aec3)) + + +### 🛠️ Refactor + +* Add Channels class ([40f70bc](https://github.com/strakam/Generals-RL/commit/40f70bcbb83a98fbc50f0de6c5187ef3a9c040a4)) +* Add strategy pattern for event handlers ([7a9c526](https://github.com/strakam/Generals-RL/commit/7a9c526a1380be3646b01bb4bf610b870a3f6585)) +* additional fix ([7a9c526](https://github.com/strakam/Generals-RL/commit/7a9c526a1380be3646b01bb4bf610b870a3f6585)) +* Fix direction types ([a4713b0](https://github.com/strakam/Generals-RL/commit/a4713b0d8f31be3b0e366a62f3458645ec31d00f)) +* Fix wrong class initialization in handlers ([7a9c526](https://github.com/strakam/Generals-RL/commit/7a9c526a1380be3646b01bb4bf610b870a3f6585)) +* handle quit better ([7a9c526](https://github.com/strakam/Generals-RL/commit/7a9c526a1380be3646b01bb4bf610b870a3f6585)) +* Improve code style ([38b0266](https://github.com/strakam/Generals-RL/commit/38b0266f60eb830f1bf32913dfec77c1481b0aba)) +* Improve handle events ([4258b79](https://github.com/strakam/Generals-RL/commit/4258b79a607e8baa76c25279df9bd15202ebbbe6)) +* little fix ([7a9c526](https://github.com/strakam/Generals-RL/commit/7a9c526a1380be3646b01bb4bf610b870a3f6585)) +* Make default default reward methods static ([32e8cf7](https://github.com/strakam/Generals-RL/commit/32e8cf7daf73199027f2d802d1a580b85c31fee2)) +* Remake folder structure ([722b1e9](https://github.com/strakam/Generals-RL/commit/722b1e9d2d2309cb8fa18e75dc3509e57c889bd8)) +* Remove unused imports ([61f276c](https://github.com/strakam/Generals-RL/commit/61f276cd36d07dc4cfcd0cd28b8ea1466b011dd3)) +* Rename Observation item visibile_cells to visible_cells ([aa196ac](https://github.com/strakam/Generals-RL/commit/aa196acf14a99c2648b46d590c4dbed114534f91)) +* Use match clause in grid setter ([c6efed0](https://github.com/strakam/Generals-RL/commit/c6efed02076bac7a7db93b49f285db4e19a96af7)) + ## [0.5.1](https://github.com/strakam/Generals-RL/compare/v0.5.0...v0.5.1) (2024-10-01) diff --git a/setup.py b/setup.py index 5150fd8..d16145b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ def load_requirements(): setup( name='generals', - version='0.5.1', + version='0.5.2', description='Generals.io environment compliant with PettingZoo API standard powered by Numpy.', long_description=open('README.md').read(), long_description_content_type='text/markdown',