From ca76567cbafe7c11487be63120dc9fb5624bceae Mon Sep 17 00:00:00 2001 From: Jasha10 <8935917+Jasha10@users.noreply.github.com> Date: Thu, 19 Aug 2021 13:57:49 -0500 Subject: [PATCH] update NEWS.md and version.py for 2.1.1 release (#778) --- NEWS.md | 11 +++++++++++ news/501.feature | 1 - news/772.misc | 1 - omegaconf/version.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) delete mode 100644 news/501.feature delete mode 100644 news/772.misc diff --git a/NEWS.md b/NEWS.md index 7bea523ea..6a1234acb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +## 2.1.1 (2021-08-17) +### Features + +- Add a throw_on_missing keyword argument to the signature of OmegaConf.to_container, which controls whether MissingMandatoryValue exceptions are raised. ([#501](https://github.com/omry/omegaconf/issues/501)) + +### Miscellaneous changes + +- Update pyyaml dependency specification for compatibility with PEP440 ([#758](https://github.com/omry/omegaconf/issues/758)) +- Fix a packaging issue (missing sdist dependency) ([#772](https://github.com/omry/omegaconf/issues/772)) + + ## 2.1.0 (2021-06-07) diff --git a/news/501.feature b/news/501.feature deleted file mode 100644 index d01304d56..000000000 --- a/news/501.feature +++ /dev/null @@ -1 +0,0 @@ -Add a throw_on_missing keyword argument to the signature of OmegaConf.to_container, which controls whether MissingMandatoryValue exceptions are raised. diff --git a/news/772.misc b/news/772.misc deleted file mode 100644 index 56f0cc061..000000000 --- a/news/772.misc +++ /dev/null @@ -1 +0,0 @@ -Fix a packaging issue (missing sdist dependency) diff --git a/omegaconf/version.py b/omegaconf/version.py index 155bbaefc..e2d71d2a8 100644 --- a/omegaconf/version.py +++ b/omegaconf/version.py @@ -1,6 +1,6 @@ import sys # pragma: no cover -__version__ = "2.1.1.dev1" +__version__ = "2.1.1" msg = """OmegaConf 2.0 and above is compatible with Python 3.6 and newer. You have the following options: