Skip to content

Commit

Permalink
1.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jieru-hu committed Apr 12, 2022
1 parent 4c5a326 commit a84958a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@

### Features

- Add support to Hydra's instantiation API for creation of `functools.partial` instances via a `_partial_` keyword. ([#1283](https://github.com/facebookresearch/hydra/issues/1283))
- The `instantiate` API now accepts `ListConfig`/`list`-type config as top-level input. ([#1950](https://github.com/facebookresearch/hydra/issues/1950))
- Improve error messages raised in case of instantiation failure. ([#2099](https://github.com/facebookresearch/hydra/issues/2099))
- Add callback for logging JobReturn. ([#2100](https://github.com/facebookresearch/hydra/issues/2100))

### API Change (Renames, deprecations and removals)

- Fix an internal key collision to prevent an exception when `- group@_global_: choice` is used in the same defaults list as `- group: choice`. ([#1784](https://github.com/facebookresearch/hydra/issues/1784))

### Bug Fixes

- Improve error message when a missing default must be specified at the command line ([#1742](https://github.com/facebookresearch/hydra/issues/1742))
- Fix an edge case where a defaults list defined in a missing dataclass node causes a ConfigCompositionException. ([#1765](https://github.com/facebookresearch/hydra/issues/1765))


1.1.1 (2021-08-19)
==================

Expand Down
2 changes: 1 addition & 1 deletion hydra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved

# Source of truth for Hydra's version
__version__ = "1.1.2.dev1"
__version__ = "1.1.2"
from hydra import utils
from hydra.errors import MissingConfigException
from hydra.main import main
Expand Down
1 change: 0 additions & 1 deletion news/1283.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/1742.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1765.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1784.api_change

This file was deleted.

1 change: 0 additions & 1 deletion news/1950.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/2099.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/2100.feature

This file was deleted.

0 comments on commit a84958a

Please sign in to comment.