diff --git a/NEWS.md b/NEWS.md index 4e6405e7c..974e0663f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +## 2.2.2 (2022-05-26) +### Bug Fixes + +- Revert an accidental behavior change where implicit conversion from `Path` to `str` was disallowed. ([#934](https://github.com/omry/omegaconf/issues/934)) +- Revert a behavior change where namedtuples and list subclasses were coerced to ListConfig. ([#939](https://github.com/omry/omegaconf/issues/939)) +- Fix a bug where the `oc.dict.values` resolver failed when passed a relative dotpath ([#942](https://github.com/omry/omegaconf/issues/942)) + + ## 2.2.1 (2022-05-17) OmegaConf 2.2 is a major release. The most significant area of improvement in 2.2 is support for more flexible type hints in structured configs. In addition, diff --git a/omegaconf/version.py b/omegaconf/version.py index ae4bdd5ea..da0393091 100644 --- a/omegaconf/version.py +++ b/omegaconf/version.py @@ -1,6 +1,6 @@ import sys # pragma: no cover -__version__ = "2.2.2.dev0" +__version__ = "2.2.2" msg = """OmegaConf 2.0 and above is compatible with Python 3.6 and newer. You have the following options: