From 676292c00db408702816b15950ffac8304a0d208 Mon Sep 17 00:00:00 2001 From: pwwang Date: Wed, 27 Oct 2021 17:08:27 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=200.4.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/changeLog.md | 4 ++++ pyparam/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/changeLog.md b/docs/changeLog.md index 98b3754..5e69687 100644 --- a/docs/changeLog.md +++ b/docs/changeLog.md @@ -1,3 +1,7 @@ +## 0.4.13 + +- 🩹 Fix non-str object being casted to json + ## 0.4.12 - 🩹 Allow ParamJson to have python object values, not only strings diff --git a/pyparam/__init__.py b/pyparam/__init__.py index 6c17787..b491630 100644 --- a/pyparam/__init__.py +++ b/pyparam/__init__.py @@ -5,4 +5,4 @@ from .params import Params from .utils import Namespace -__version__ = "0.4.12" +__version__ = "0.4.13" diff --git a/pyproject.toml b/pyproject.toml index 15d423e..1bbd342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "pyparam" -version = "0.4.12" +version = "0.4.13" description = "Powerful parameter processing." authors = [ "pwwang ",] license = "MIT"