Skip to content
Snippets Groups Projects
Commit 5a576731bb58 authored by Paul Ganssle's avatar Paul Ganssle
Browse files

Merge pull request #707 from pganssle/changelog

Add changelog to documentation
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@
- Style improvement to zoneinfo.tzfile that was confusing to static type
checkers. Reported and fixed by @quodlibetor (gh pr #485)
- Several unused imports were removed by @jdufresne. (gh pr #486)
- Switched isinstance(*, collections.Callable) to callable, which is available
- Switched ``isinstance(*, collections.Callable)`` to callable, which is available
on all supported Python versions. Implemented by @jdufresne (gh pr #612)
- Added CONTRIBUTING.md (gh pr #533)
- Added AUTHORS.md (gh pr #542)
......@@ -609,7 +609,7 @@
Andreas Köhler.
- Implemented internal timezone information with binary
timezone files [1]. datautil.tz.gettz() function will now
timezone files. datautil.tz.gettz() function will now
try to use the system timezone files, and fallback to
the internal versions. It's also possible to ask for
the internal versions directly by using
......@@ -628,9 +628,7 @@
- Fixed other reported bugs.
[1] http://www.twinsun.com/tz/tz-link.htm
Version 0.5
===========
......@@ -633,8 +631,8 @@
Version 0.5
===========
- Removed FREQ_ prefix from rrule frequency constants
- Removed ``FREQ_`` prefix from rrule frequency constants
WARNING: this breaks compatibility with previous versions.
- Fixed rrule.between() for cases where "after" is achieved
......
Added changelog to documentation. (gh issue #692, gh pr #707)
Changed the default theme to sphinx_rtd_theme, and changed the sphinx configuration to go along with that. (gh pr #707)
.. Changelog transcluded from the NEWS file
=========
Changelog
=========
.. include:: ../NEWS
......@@ -106,7 +106,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
html_theme = 'sphinx_rtd_theme'
# 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
......
......@@ -11,5 +11,11 @@
Contents:
.. toctree::
:maxdepth: 1
Overview <self>
Changelog <changelog>
.. toctree::
:maxdepth: 2
......@@ -14,6 +20,5 @@
:maxdepth: 2
self
easter
parser
relativedelta
......
Sphinx>=1.7.3,<2
sphinx_rtd_theme>=0.3.0
......@@ -53,7 +53,7 @@
[testenv:docs]
description = invoke sphinx-build to build the HTML docs, check that URIs are valid
basepython = python3.6
deps = sphinx >= 1.6.3, < 2
deps = -r docs/requirements-docs.txt
{[testenv]deps}
commands = sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" {posargs:-W --color -bhtml}
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" {posargs:-W --color -blinkcheck}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment