diff --git a/README.md b/README.md index 371936e..02cddee 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,7 @@ To decrypt a cipher and store it as text file. ``` $ sipher "-.. .- - .- " --decrypt --store -Encrypted message copied to clipboard. -Encrypted message stored in 'path_given'. +Encrypted message stored in 'path_given/default_path'. ``` ## Issues: diff --git a/pyproject.toml b/pyproject.toml index 7ee02ec..f51e7c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sipher" -version = "1.0.0" +version = "1.0.1" description = "To encrypt and decrypt message." readme = "README.md" requires-python = ">=3.6" @@ -33,4 +33,4 @@ keywords = [ "Bug Tracker" = "https://github.com/codesrg/sipher/issues" [project.scripts] -zenpass = "sipher.__main__:main" \ No newline at end of file +sipher = "sipher.__main__:main" \ No newline at end of file diff --git a/sipher/__init__.py b/sipher/__init__.py index b06202b..c264bd5 100644 --- a/sipher/__init__.py +++ b/sipher/__init__.py @@ -1,6 +1,7 @@ """Encrypt/Decrypt message using morse code""" + __author__ = 'srg' -__version__ = '1.0.0' +__version__ = '1.0.1' from .morse import Morse diff --git a/sipher/__main__.py b/sipher/__main__.py index 6e9af5b..9d10a7f 100644 --- a/sipher/__main__.py +++ b/sipher/__main__.py @@ -4,7 +4,7 @@ from sipher.morse import Morse __prog__ = 'sipher' -__version__ = '1.0.0' +__version__ = '1.0.1' def get_argument():