From 9a63a4d8ddc8a75409d5f904b082381f4c14ad15 Mon Sep 17 00:00:00 2001 From: Stanislav Menshykh Date: Mon, 26 Jun 2023 00:06:51 +0300 Subject: [PATCH] Enable Circle CI --- CHANGELOG.md | 4 ++++ README.md | 6 +++++- README.rst | 6 ++++++ VERSION | 2 +- docs/Changelog.md | 4 ++++ docs/conf.py | 6 +++--- src/controller.py | 14 +++++++------- src/core/core.py | 2 +- 8 files changed, 31 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f8cab..230b4a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Changes ======= +4.0.5 (25.06.2023) +--------------------------- + - Fix unit tests and resolve dev requirements + v4.0.4-stable (24.06.2023) --------------------------- - Fix unit tests and resolve dev requirements diff --git a/README.md b/README.md index 654e401..306198e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The scanning is performed by the built-in dictionary and external dictionaries a Software is written for informational purposes and is open source product under the GPL license. ***(Due to the incorrect operation of "SSL" the support for "Python 2.7" is terminated)*** -* *Current 4.0.4-stable (24.06.2023)* +* *Current 4.0.5 (25.06.2023)* - Directories - 37047 - Subdomains - 181018 @@ -83,6 +83,10 @@ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py #### [Changelog](CHANGELOG.md) (last changes) +v4.0.5 (24.06.2023) +--------------------------- + - Fix unit tests and resolve dev requirements + v4.0.4-stable (24.06.2023) --------------------------- - Fix unit tests and resolve dev requirements diff --git a/README.rst b/README.rst index 2eb8b4a..390bb71 100644 --- a/README.rst +++ b/README.rst @@ -103,6 +103,12 @@ Updates `Changelog `__ (last changes) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +v4.0.5 (25.06.2023) +--------------------------- + +:: + + - Fix unit tests and resolve dev requirements v4.0.4-stable (24.06.2023) --------------------------- diff --git a/VERSION b/VERSION index 4e287a2..7636e75 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.4-stable +4.0.5 diff --git a/docs/Changelog.md b/docs/Changelog.md index a7dd125..d0ea410 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,9 @@ Changes ======= +v4.0.5 (25.06.2023) +--------------------------- + - Fix unit tests and resolve dev requirements + v4.0.4-stable (24.06.2023) --------------------------- - Fix unit tests and resolve dev requirements diff --git a/docs/conf.py b/docs/conf.py index c057fff..32d9318 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -69,9 +69,9 @@ # built documents. # # The short X.Y version. -version = u'4.0.4' +version = u'4.0.5' # The full version, including alpha/beta/rc tags. -release = u'4.0.4-stable' +release = u'4.0.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -146,7 +146,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -html_title = u'OWASP WEB Directory Scanner v4.0.4-stable' +html_title = u'OWASP WEB Directory Scanner v4.0.5' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/src/controller.py b/src/controller.py index 6d0f6e2..5417fd6 100644 --- a/src/controller.py +++ b/src/controller.py @@ -104,12 +104,11 @@ def update_action(): @staticmethod def docs_action(): """ - Show app user guide - - :raise: SrcError - :return: None - """ + Displays the user guide for the app. + :raises SrcError: If there is an error with the package or attribute. + :return: None + """ try: package.docs() except (AttributeError, PackageError) as error: @@ -132,8 +131,9 @@ def version_action(): @staticmethod def local_version(): """ - Show app local version - :raise SrcError + Returns the local version of the app. + + :raises SrcError: If there is an error retrieving the local version. :return: None """ diff --git a/src/core/core.py b/src/core/core.py index f0e9ff4..8e9b154 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -22,7 +22,7 @@ 'repository': 'git@github.com:stanislav-web/OpenDoor.git', 'remote_version': 'https://raw.githubusercontent.com/stanislav-web/OpenDoor/master/VERSION', 'license': 'License: GNU General Public License', - 'version': '4.0.4-stable', + 'version': '4.0.5', 'documentation': 'https://opendoor.readthedocs.org', 'required_versions': { 'minor': '3.9',