From bf1f92c49ede2db7b3e2e70a06c68c3a6b0bfe41 Mon Sep 17 00:00:00 2001 From: Omry Yadan Date: Thu, 7 Jan 2021 14:34:50 -0800 Subject: [PATCH] Hydra 1.0.5 --- NEWS.md | 25 +++++++++++++++++++++++++ hydra/__init__.py | 2 +- news/1036.plugin | 1 - news/1062.feature | 1 - news/1132.plugin | 1 - news/1140.api_change | 1 - news/1253.maintenance | 3 --- news/1270.bugfix | 1 - 8 files changed, 26 insertions(+), 9 deletions(-) delete mode 100644 news/1036.plugin delete mode 100644 news/1062.feature delete mode 100644 news/1132.plugin delete mode 100644 news/1140.api_change delete mode 100644 news/1253.maintenance delete mode 100644 news/1270.bugfix diff --git a/NEWS.md b/NEWS.md index fb432038040..a6dcdc8a4f1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,28 @@ +1.0.5 (2021-01-07) +================== + +### Features + +- Support Python 3.9 . ([#1062](https://github.com/facebookresearch/hydra/issues/1062)) + +### API Change (Renames, deprecations and removals) + +- Deprecate support for renaming packages via the command line. ([#1140](https://github.com/facebookresearch/hydra/issues/1140)) + +### Bug Fixes + +- Fixed hydra.job.id and hydra.job.num not getting passed to jobs in multirun ([#1270](https://github.com/facebookresearch/hydra/issues/1270)) + +### Plugins + +- Support `additional_parameters` as an optional param in the Submitit launcher plugin. +- Add [Optuna](https://optuna.org/) Sweeper plugin + +### Maintenance Changes + +- Limit OmegaConf depedency to 2.0 versions ([#1253](https://github.com/facebookresearch/hydra/issues/1253)) + + 1.0.4 (2020-11-17) ================== diff --git a/hydra/__init__.py b/hydra/__init__.py index b30a3269ce3..9eb6250cdd0 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.4" +__version__ = "1.0.5" from hydra import utils from hydra.errors import MissingConfigException from hydra.main import main diff --git a/news/1036.plugin b/news/1036.plugin deleted file mode 100644 index 3f013e0e57f..00000000000 --- a/news/1036.plugin +++ /dev/null @@ -1 +0,0 @@ -Support `additional_parameters` as an optional param in the Submitit launcher plugin. diff --git a/news/1062.feature b/news/1062.feature deleted file mode 100644 index 28c5553dcd4..00000000000 --- a/news/1062.feature +++ /dev/null @@ -1 +0,0 @@ -Support Python 3.9 . diff --git a/news/1132.plugin b/news/1132.plugin deleted file mode 100644 index 21c801a9591..00000000000 --- a/news/1132.plugin +++ /dev/null @@ -1 +0,0 @@ -Add [Optuna](https://optuna.org/) Sweeper plugin diff --git a/news/1140.api_change b/news/1140.api_change deleted file mode 100644 index 3ff0aa22e14..00000000000 --- a/news/1140.api_change +++ /dev/null @@ -1 +0,0 @@ -Deprecate support for renaming packages via the command line. \ No newline at end of file diff --git a/news/1253.maintenance b/news/1253.maintenance deleted file mode 100644 index 064164df20d..00000000000 --- a/news/1253.maintenance +++ /dev/null @@ -1,3 +0,0 @@ -Limit OmegaConf depedency to 2.0 versions - - diff --git a/news/1270.bugfix b/news/1270.bugfix deleted file mode 100644 index eb4023db2f7..00000000000 --- a/news/1270.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed hydra.job.id and hydra.job.num not getting passed to jobs in multirun