diff --git a/NEWS.md b/NEWS.md index a6dcdc8a4f1..f36daebb03f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +1.0.6 (2021-01-29) +================== + +### Bug Fixes + +- Fix interpolation in Hydra config node ([#1335](https://github.com/facebookresearch/hydra/issues/1335)) + +### Maintenance Changes + +- Remove `Plugins` from `Singleton.get_state()` ([#1330](https://github.com/facebookresearch/hydra/issues/1330)) + + 1.0.5 (2021-01-07) ================== diff --git a/hydra/__init__.py b/hydra/__init__.py index 9eb6250cdd0..652c2f2f82e 100644 --- a/hydra/__init__.py +++ b/hydra/__init__.py @@ -1,7 +1,7 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved # Source of truth for Hydra's version -__version__ = "1.0.5" +__version__ = "1.0.6" from hydra import utils from hydra.errors import MissingConfigException from hydra.main import main diff --git a/news/1330.maintenance b/news/1330.maintenance deleted file mode 100644 index d7439201cd7..00000000000 --- a/news/1330.maintenance +++ /dev/null @@ -1 +0,0 @@ -Remove `Plugins` from `Singleton.get_state()` diff --git a/news/1335.bugfix b/news/1335.bugfix deleted file mode 100644 index 08e85f3b4cb..00000000000 --- a/news/1335.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix interpolation in Hydra config node