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",