diff --git a/.gitignore b/.gitignore index dc06187..b075105 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,9 @@ share/python-wheels/ *.egg MANIFEST +# documetation +docs + # Installer logs pip-log.txt pip-delete-this-directory.txt diff --git a/cryptmoji/__init__.py b/cryptmoji/__init__.py index 070c044..72f26f5 100644 --- a/cryptmoji/__init__.py +++ b/cryptmoji/__init__.py @@ -1,3 +1 @@ -from cryptmoji.main import Cryptmoji - -__version__ = "1.1.1" +__version__ = "1.1.2" diff --git a/pyproject.toml b/pyproject.toml index 048d6f4..cb27797 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,15 @@ [tool.poetry] name = "cryptmoji" -version = "1.1.1" +version = "1.1.2" description = "Encrypt Text using emojis!" authors = ["Siddhesh Agarwal "] -license = "MIT License" +license = "MIT" readme = "README.md" repository = "https://github.com/Siddhesh-Agarwal/cryptmoji" +documentation = "https://siddhesh-agarwal.github.io/cryptmoji/" keywords = ["encryption", "emoji", "cipher"] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", @@ -31,5 +32,5 @@ python = "^3.6" pytest = "^5.2" [build-system] -requires = ["poetry-core>=1.1.1"] +requires = ["poetry-core>=1.1.2"] build-backend = "poetry.core.masonry.api" diff --git a/tests/test_cryptmoji.py b/tests/test_cryptmoji.py index be5c604..e307d40 100644 --- a/tests/test_cryptmoji.py +++ b/tests/test_cryptmoji.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.1.1" + assert __version__ == "1.1.2"