diff --git a/pyproject.toml b/pyproject.toml index edd9860..036c8f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mobile-strings-converter" -version = "0.1.0" +version = "0.1.1" description = "A Python package that converts Android & iOS strings files to any supported file type." authors = ["José Carlos López "] license = "MIT" diff --git a/src/mobile_strings_converter/__init__.py b/src/mobile_strings_converter/__init__.py index 1a64406..6b8c490 100644 --- a/src/mobile_strings_converter/__init__.py +++ b/src/mobile_strings_converter/__init__.py @@ -7,7 +7,7 @@ from .converter import convert_strings, to_google_sheets # Constants -__version__ = "0.1.0" +__version__ = "0.1.1" __author__ = "José Carlos López Henestrosa" __license = "MIT"