From 497602eb746fd21fb51e06b01ce9630499f393e3 Mon Sep 17 00:00:00 2001 From: Henry Wilde Date: Wed, 4 Oct 2023 15:26:28 +0100 Subject: [PATCH] v1.4.3 (#169) * Bump version * Update changelog --- CHANGES.md | 5 +++++ src/matching/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index b7b5a42..520bf67 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +## v1.4.3 - 2023-10-04 + +- Fix bug when trying to remove a non-free successor from free residents in HR +- Update link to documentation in README + ## v1.4.2 - 2023-09-14 - Fix sort of murky processing when removing players diff --git a/src/matching/__init__.py b/src/matching/__init__.py index 44499ba..7357ef7 100644 --- a/src/matching/__init__.py +++ b/src/matching/__init__.py @@ -11,7 +11,7 @@ from .matchings import MultipleMatching, SingleMatching from .players import Hospital, Player, Project, Supervisor -__version__ = "1.4.2" +__version__ = "1.4.3" __all__ = [ "BaseGame",