Skip to content

Commit

Permalink
Enable Circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Menshykh committed Jun 25, 2023
1 parent 3f18ecc commit 9a63a4d
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ Updates

`Changelog <CHANGELOG.md>`__ (last changes)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
v4.0.5 (25.06.2023)
---------------------------

::

- Fix unit tests and resolve dev requirements

v4.0.4-stable (24.06.2023)
---------------------------
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.4-stable
4.0.5
4 changes: 4 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -146,7 +146,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> 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.
#
Expand Down
14 changes: 7 additions & 7 deletions src/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
"""

Expand Down
2 changes: 1 addition & 1 deletion src/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
'repository': '[email protected]: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',
Expand Down

0 comments on commit 9a63a4d

Please sign in to comment.