diff --git a/NEWS.md b/NEWS.md index 453e5f8cbc3..3a8bdda2628 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,16 @@ +1.3.2 (2023-02-22) +================== + +### Features + +- Add a `hydra.utils.get_object` function that gives users access to Hydra's dotpath-lookup machinery. ([#2139](https://github.com/facebookresearch/hydra/issues/2139)) +- Allow config_path to specify a non-relative module path, by starting with `pkg://` ([#2564](https://github.com/facebookresearch/hydra/issues/2564)) + +### Maintenance Changes + +- Drop support for python3.6 ([#2304](https://github.com/facebookresearch/hydra/issues/2304)) + + 1.3.1 (2022-12-20) ================== diff --git a/hydra/__init__.py b/hydra/__init__.py index 96c4d4a3d9a..cb91a833c59 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.3.1" +__version__ = "1.3.2" from hydra import utils from hydra.errors import MissingConfigException from hydra.main import main diff --git a/news/2139.feature b/news/2139.feature deleted file mode 100644 index 034f2e6dace..00000000000 --- a/news/2139.feature +++ /dev/null @@ -1 +0,0 @@ -Add a `hydra.utils.get_object` function that gives users access to Hydra's dotpath-lookup machinery. diff --git a/news/2304.maintenance b/news/2304.maintenance deleted file mode 100644 index 3993fc1211d..00000000000 --- a/news/2304.maintenance +++ /dev/null @@ -1 +0,0 @@ -Drop support for python3.6 diff --git a/news/2564.feature b/news/2564.feature deleted file mode 100644 index 49f3f498ee8..00000000000 --- a/news/2564.feature +++ /dev/null @@ -1 +0,0 @@ -Allow config_path to specify a non-relative module path, by starting with `pkg://`