From 1de82c458753e8b9f02e96953a97782f71e71cdd Mon Sep 17 00:00:00 2001 From: Shubham Gupta Date: Fri, 21 Aug 2020 00:53:31 +0530 Subject: [PATCH] update the version of package. --- HISTORY.rst | 4 ++-- docs/source/conf.py | 4 ++-- laymon/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6c56d31..8bc4f5f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.1.0 (2020-08-13) +1.0.0 (2020-08-21) ------------------ -* First release on PyPI. \ No newline at end of file +* First release on PyPI. diff --git a/docs/source/conf.py b/docs/source/conf.py index 9107704..cca1c88 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,9 +23,9 @@ author = "Shubham Gupta" # The short X.Y version -version = "[0.1.0]" +version = "[1.0.0]" # The full version, including alpha/beta/rc tags -release = "[0.1.0]" +release = "[1.0.0]" # -- General configuration --------------------------------------------------- diff --git a/laymon/__init__.py b/laymon/__init__.py index a346968..f137342 100644 --- a/laymon/__init__.py +++ b/laymon/__init__.py @@ -7,4 +7,4 @@ __author__ = """Shubham Gupta""" __email__ = "shubhamgupta3121@gmail.com" -__version__ = "0.1.0" +__version__ = "1.0.0" diff --git a/setup.py b/setup.py index 8673eca..faaae59 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ def get_requirements(filename): tests_require=test_requirements, url="https://github.com/shubham3121/laymon", project_url={"Documentation": "https://laymon.readthedocs.io"}, - version="0.1.0", + version="1.0.0", zip_safe=False, )