Skip to content

Commit

Permalink
Bump version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Schweder committed Dec 19, 2022
1 parent 48c7d34 commit 62daadc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion makeflatt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.3"
__version__ = "1.0.4"

from .flatmaker import FlattMaker, NotADictionaryException

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_makeflatt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 62daadc

Please sign in to comment.