Releases: ajatkj/typed_configparser
Releases · ajatkj/typed_configparser
1.1.0
What's Changed
New Features:
- Add support for dataclass field level init. (bug #10)
- Add support for post_init method. (bug #10)
- Add support for InitVar. You can now send initial values to be used in post_init method using
init_var
keyword argument toparse_section
method. Read more about InitVar here.
Bug Fixes and Internal Cleanup:
- Fixed issue #9 where
from __future__ import annotations
was breaking the code. - Re-written some internal code to use dataclasses in "proper" way instead using hacky workarounds.
- Added a few tests related to above new features.