Skip to content

Commit

Permalink
馃憤
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhesh-Agarwal committed Sep 7, 2022
1 parent b71957a commit 76387ab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ share/python-wheels/
*.egg
MANIFEST

# documetation
docs

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
Expand Down
4 changes: 1 addition & 3 deletions cryptmoji/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from cryptmoji.main import Cryptmoji

__version__ = "1.1.1"
__version__ = "1.1.2"
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[tool.poetry]
name = "cryptmoji"
version = "1.1.1"
version = "1.1.2"
description = "Encrypt Text using emojis!"
authors = ["Siddhesh Agarwal <siddhesh.agarwal@gmail.com>"]
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",
Expand All @@ -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"
2 changes: 1 addition & 1 deletion tests/test_cryptmoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.1.1"
assert __version__ == "1.1.2"

0 comments on commit 76387ab

Please sign in to comment.