Skip to content

Commit 273ce9c

Browse files
authored
release Hydra v1.3.0 (#2490)
1 parent c48ef19 commit 273ce9c

File tree

8 files changed

+17
-7
lines changed

8 files changed

+17
-7
lines changed

NEWS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
1.3.0 (2022-12-08)
2+
==================
3+
4+
### Features
5+
6+
- Implement `_convert_="object"` option for `instantiate`, enabling conversion of non-`_target_` structured configs to instances of the backing dataclass / attr class. ([#1719](https://github.com/facebookresearch/hydra/issues/1719))
7+
- Enable layering of the `@hydra.main` decorator on top of other decorators produced using `functools.wraps`. ([#2303](https://github.com/facebookresearch/hydra/issues/2303))
8+
- Allow for non-leading dashes in override keys ([#2363](https://github.com/facebookresearch/hydra/issues/2363))
9+
- support specifying an absolute path with `--config-path` ([#2368](https://github.com/facebookresearch/hydra/issues/2368))
10+
- Support python3.11 ([#2443](https://github.com/facebookresearch/hydra/issues/2443))
11+
12+
### Bug Fixes
13+
14+
- Fix an issue where Hydra's exception-handling logic could raise an `AssertionError` ([#2342](https://github.com/facebookresearch/hydra/issues/2342))
15+
16+
117
1.2.0 (2022-05-17)
218
==================
319

hydra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
22

33
# Source of truth for Hydra's version
4-
__version__ = "1.3.0.dev2"
4+
__version__ = "1.3.0"
55
from hydra import utils
66
from hydra.errors import MissingConfigException
77
from hydra.main import main

news/1719.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2303.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2342.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2363.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2368.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2443.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)