From 538f3411dcf64107947fc3dfaf756b4cb3f7c31e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 11:43:17 +0100 Subject: [PATCH] Release 2.3.0 (#120) Co-authored-by: zifeo --- CHANGELOG.md | 6 ++++++ dataconf/version.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a01433b..46d0afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v2.3.0 (2023-10-31) + +### Feat + +- add literal support (#119) + ## v2.2.2 (2023-09-24) ### Fix diff --git a/dataconf/version.py b/dataconf/version.py index 1a1f705..fca4287 100644 --- a/dataconf/version.py +++ b/dataconf/version.py @@ -1,6 +1,6 @@ import sys -__version__ = "2.2.2" +__version__ = "2.3.0" PY310up = sys.version_info >= (3, 10) PY311up = sys.version_info >= (3, 11) diff --git a/pyproject.toml b/pyproject.toml index 5b9c133..5548ef6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dataconf" -version = "2.2.2" +version = "2.3.0" description = "Simple dataclasses configuration management for Python with hocon/json/yaml/properties/env-vars/dict support." authors = [] license = "MPL-2.0" @@ -43,7 +43,7 @@ ruff = ">=0.0.247,<0.0.292" [tool.commitizen] name = "cz_conventional_commits" -version = "2.2.2" +version = "2.3.0" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "pyproject.toml:version",