diff --git a/changelog.md b/changelog.md index 05f89fef..2a71f503 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +# Version 1.1.4 + +* FIX #386: Fix `__contains__` of `Configuration` to check if a value could be retrieved from a `Configuration`. +* FIX #385: Make `Categorical` and `Ordinal` more backwards compatible! + # Version 1.1.3 * FIX #63c963b: Remove stray `print` statements diff --git a/pyproject.toml b/pyproject.toml index 6ffab1c8..aa2aecea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ConfigSpace" -version = "1.1.3" +version = "1.1.4" description = """\ Creation and manipulation of parameter configuration spaces for \ automated algorithm configuration and hyperparameter tuning. \ diff --git a/src/ConfigSpace/__version__.py b/src/ConfigSpace/__version__.py index fbfd3512..7583534a 100644 --- a/src/ConfigSpace/__version__.py +++ b/src/ConfigSpace/__version__.py @@ -3,4 +3,4 @@ # The following line *must* be the last in the module, exactly as formatted: from __future__ import annotations -__version__ = "1.1.3" +__version__ = "1.1.4"