From 62daadca85726eadc8f9277e9552c522ffa7a5c0 Mon Sep 17 00:00:00 2001 From: Jonathan Schweder Date: Mon, 19 Dec 2022 13:03:07 +0000 Subject: [PATCH] Bump version 1.0.4 --- makeflatt/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_makeflatt.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/makeflatt/__init__.py b/makeflatt/__init__.py index 01d9332..0a58f12 100644 --- a/makeflatt/__init__.py +++ b/makeflatt/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.3" +__version__ = "1.0.4" from .flatmaker import FlattMaker, NotADictionaryException diff --git a/pyproject.toml b/pyproject.toml index 424fe6b..01d1b5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "makeflatt" -version = "1.0.3" +version = "1.0.4" description = "Simple library to make your dictionary flatten" authors = ["Jonathan Schweder "] license = "MIT" diff --git a/tests/test_makeflatt.py b/tests/test_makeflatt.py index 30d2f2e..c6d789f 100644 --- a/tests/test_makeflatt.py +++ b/tests/test_makeflatt.py @@ -12,7 +12,7 @@ def setUp(self): self.fm = FlattMaker() def test_version(self): - self.assertEqual(__version__, "1.0.3") + self.assertEqual(__version__, "1.0.4") def test_noop(self): expected = {"a": 1, "b": 2, "c": 3}