From 350bdb632865c5dd2286f2f6521acefe4abd843d Mon Sep 17 00:00:00 2001 From: Jasha <8935917+Jasha10@users.noreply.github.com> Date: Wed, 7 Dec 2022 00:39:21 +0000 Subject: [PATCH] release OmegaConf v2.3.0 --- NEWS.md | 12 ++++++++++++ news/1003.bugfix | 1 - news/880.feature | 1 - news/984.feature | 1 - news/feature.1023 | 1 - omegaconf/version.py | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 news/1003.bugfix delete mode 100644 news/880.feature delete mode 100644 news/984.feature delete mode 100644 news/feature.1023 diff --git a/NEWS.md b/NEWS.md index d5ec2137d..b5ed00cbf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +## 2.3.0 (2022-12-06) +### Features + +- Support python3.11 ([#1023](https://github.com/omry/omegaconf/issues/1023)) +- Support interpolation to keys that contain a non-leading dash character ([#880](https://github.com/omry/omegaconf/issues/880)) +- OmegaConf now inspects the metadata of structured config fields and ignores fields where `metadata["omegaconf_ignore"]` is `True`. ([#984](https://github.com/omry/omegaconf/issues/984)) + +### Bug Fixes + +- Fix an issue where merging of nested structured configs could incorrectly result in an exception ([#1003](https://github.com/omry/omegaconf/issues/1003)) + + ## 2.2.3 (2022-08-18) ### Bug Fixes diff --git a/news/1003.bugfix b/news/1003.bugfix deleted file mode 100644 index 8721fdb8a..000000000 --- a/news/1003.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix an issue where merging of nested structured configs could incorrectly result in an exception diff --git a/news/880.feature b/news/880.feature deleted file mode 100644 index 36928d15d..000000000 --- a/news/880.feature +++ /dev/null @@ -1 +0,0 @@ -Support interpolation to keys that contain a non-leading dash character diff --git a/news/984.feature b/news/984.feature deleted file mode 100644 index 5e17bac2e..000000000 --- a/news/984.feature +++ /dev/null @@ -1 +0,0 @@ -OmegaConf now inspects the metadata of structured config fields and ignores fields where `metadata["omegaconf_ignore"]` is `True`. diff --git a/news/feature.1023 b/news/feature.1023 deleted file mode 100644 index 5039bdd55..000000000 --- a/news/feature.1023 +++ /dev/null @@ -1 +0,0 @@ -Support python3.11 diff --git a/omegaconf/version.py b/omegaconf/version.py index 4208ff706..b4989b2ef 100644 --- a/omegaconf/version.py +++ b/omegaconf/version.py @@ -1,6 +1,6 @@ import sys # pragma: no cover -__version__ = "2.3.0.dev3" +__version__ = "2.3.0" msg = """OmegaConf 2.0 and above is compatible with Python 3.6 and newer. You have the following options: