From 135ed124cc6f75294266504c724a3cab477cbbd2 Mon Sep 17 00:00:00 2001 From: netzulo Date: Mon, 11 Mar 2019 00:48:42 +0100 Subject: [PATCH] [qacode] update to v0.5.9 + doc now generated with bootstrap theme --- CHANGELOG.md | 14 ++++++++++++-- setup.py | 2 +- source-docs/source/conf.py | 7 ++++--- tox.ini | 1 + 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 268d854f..edb641dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] - xxxx-xx-xx +### Added + +### Changed + +### Fixed + +### Removed + + +## [v0.5.9] - 2019-03-11 + ### Added - Autodoc for package 'qacode.core.exceptions' #223 - Add find_child/s method + TCs #235 @@ -15,13 +26,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Improve Control Search #222 - Updated lib 'selenium' from 3.12.0 to 3.14.0 #228 - Now enum_base is being tested and documented #181 +- Documentation now generated with bootstrap theme ### Fixed - CI appveyor builds failing since tag v0.5.7 #226 - Failing setup.py install on python2.7 before next release #233 -### Removed - ## [v0.5.8] - 2019-02-11 diff --git a/setup.py b/setup.py index 097e65df..9aa633fd 100755 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def read(file_path='./', file_name=None, is_encoding=True, ignore_raises=False): ignore_raises=ignore_raises)) -VERSION = "0.5.8" +VERSION = "0.5.9" CURR_PATH = "{}{}".format(path.abspath(path.dirname(__file__)), '/') INSTALL_REQUIRES = [ 'appdirs', diff --git a/source-docs/source/conf.py b/source-docs/source/conf.py index fc6a32d9..e488d777 100644 --- a/source-docs/source/conf.py +++ b/source-docs/source/conf.py @@ -15,7 +15,7 @@ # import os # import sys # sys.path.insert(0, os.path.abspath('.')) - +import sphinx_bootstrap_theme # -- Project information ----------------------------------------------------- @@ -24,7 +24,7 @@ author = 'Netzulo.com' # The short X.Y version -version = '5.8' +version = '5.9' # The full version, including alpha/beta/rc tags release = 'v0.{}'.format(version) @@ -81,7 +81,8 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = 'bootstrap' +html_theme_path = sphinx_bootstrap_theme.get_html_theme_path() # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/tox.ini b/tox.ini index 8fb5c7f4..08cb9ef6 100644 --- a/tox.ini +++ b/tox.ini @@ -76,4 +76,5 @@ deps = twine readme_renderer Sphinx + sphinx_bootstrap_theme