From 6fcd8c7b0e4aa2c22d909d61285fe65b9cae4f00 Mon Sep 17 00:00:00 2001 From: dpizetta Date: Mon, 20 Jan 2020 16:03:14 -0300 Subject: [PATCH] FIX: documentation --- CHANGES.rst | 2 ++ docs/conf.py | 5 +++-- qdarkstyle/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5934978..0899358 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,7 @@ Changelog ========= +- 2.8.1: + - Fix documentation - 2.8: - Fix tooltip giant rectangle #174 - Fix QTextEdit wihout borders inside frame #188 diff --git a/docs/conf.py b/docs/conf.py index d142fb5..e8b13f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,12 +17,13 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -import qdarkstyle import os import sys sys.path.insert(0, os.path.abspath('..')) +import qdarkstyle + # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. @@ -57,7 +58,7 @@ master_doc = 'index' # General information about the project. project = 'QDarkStyle' -copyright = '2019, Colin Duquesnoy' +copyright = '2020, Colin Duquesnoy' author = 'Colin Duquesnoy' # The version info for the project you're documenting, acts as replacement for diff --git a/qdarkstyle/__init__.py b/qdarkstyle/__init__.py index 0f75401..2057d4b 100644 --- a/qdarkstyle/__init__.py +++ b/qdarkstyle/__init__.py @@ -56,7 +56,7 @@ import warnings # Local imports from qdarkstyle.palette import DarkPalette -__version__ = "2.8" +__version__ = "2.8.1" _logger = logging.getLogger(__name__)