Skip to content

Commit

Permalink
OmegaConf 2.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasha10 committed Aug 18, 2022
1 parent a4b95d1 commit 319796c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.2.3 (2022-08-18)
### Bug Fixes

- Revert an accidental behavior change where implicit conversion from `Path` to `str` was disallowed. ([#934](https://github.com/omry/omegaconf/issues/934))
- ListConfig sliced assignment now avoids partial updates upon error ([#950](https://github.com/omry/omegaconf/issues/950))
- 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))
- 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))
- When parsing yaml: Disallow numbers with trailing underscore from being converted to float. ([#838](https://github.com/omry/omegaconf/issues/838))

### API changes and deprecations

- 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))


## 2.2.2 (2022-05-26)
### Bug Fixes

Expand Down
1 change: 0 additions & 1 deletion news/934.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion omegaconf/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys # pragma: no cover

__version__ = "2.2.3.dev0"
__version__ = "2.2.3"

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

0 comments on commit 319796c

Please sign in to comment.