Skip to content

Commit 319796c

Browse files
committed
OmegaConf 2.2.3 release
1 parent a4b95d1 commit 319796c

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.2.3 (2022-08-18)
2+
### Bug Fixes
3+
4+
- Revert an accidental behavior change where implicit conversion from `Path` to `str` was disallowed. ([#934](https://github.com/omry/omegaconf/issues/934))
5+
- ListConfig sliced assignment now avoids partial updates upon error ([#950](https://github.com/omry/omegaconf/issues/950))
6+
- Fix a bug that caused OmegaConf to crash when processing attr classes whose field annotations contained forward-references. ([#963](https://github.com/omry/omegaconf/issues/963))
7+
- Improve error message when certain illegal type annotations (such as `typing.Sequence`) are used in structured configs. ([#991](https://github.com/omry/omegaconf/issues/991))
8+
- When parsing yaml: Disallow numbers with trailing underscore from being converted to float. ([#838](https://github.com/omry/omegaconf/issues/838))
9+
10+
### API changes and deprecations
11+
12+
- In structured config type hints, OmegaConf now treats `tuple` as equivalent to `typing.Tuple`, and likewise for `dict`/`Dict` and `list`/`List`. ([#973](https://github.com/omry/omegaconf/issues/973))
13+
14+
115
## 2.2.2 (2022-05-26)
216
### Bug Fixes
317

news/934.bugfix

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

news/950.bugfix

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

news/963.bugfix

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

news/973.api_change

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

news/991.bugfix

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

omegaconf/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys # pragma: no cover
22

3-
__version__ = "2.2.3.dev0"
3+
__version__ = "2.2.3"
44

55
msg = """OmegaConf 2.0 and above is compatible with Python 3.6 and newer.
66
You have the following options:

0 commit comments

Comments
 (0)