Mercurial > hgrepos > Python > libs > ConfigMix
changeset 91:5ca36fbea43d
Created a changelog
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Sat, 17 Mar 2018 18:59:14 +0100 |
| parents | 99e7b10c8aa8 |
| children | 75738d488e9d |
| files | CHANGES.txt doc/changes.rst doc/conf.py doc/index.rst requirements_docu.txt |
| diffstat | 5 files changed, 56 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CHANGES.txt Sat Mar 17 18:59:14 2018 +0100 @@ -0,0 +1,29 @@ +.. -*- coding: utf-8; mode: rst; -*- + +.. +.. Valid tags: doc, feature, bugfix + +.. _changelog: + +Changelog +========= + +Pre-1.0 Series +-------------- + +.. changelog:: + :version: 0.6 + + .. change:: + :tags: doc + + Begin the documentation with `Sphinx <http://www.sphinx-doc.org>`_. + +.. changelog:: + :version: 0.5 + :released: 2016-04-19 + + .. change:: + :tags: feature + + First really used release.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/changes.rst Sat Mar 17 18:59:14 2018 +0100 @@ -0,0 +1,19 @@ +.. -*- coding: utf-8 -*- + +========= + Changes +========= + +All major changes over the versions are listed here. For API breaking +changes have a look at :ref:`api-changes`, they are listed there in +detail. + +.. include:: ../CHANGES.txt + + +.. _api-changes: + +API Breaking Changes +==================== + +No incompatible changes yet.
--- a/doc/conf.py Sat Mar 17 13:20:53 2018 +0100 +++ b/doc/conf.py Sat Mar 17 18:59:14 2018 +0100 @@ -54,6 +54,7 @@ 'sphinx.ext.todo', 'sphinx.ext.ifconfig', # 'sphinx.ext.viewcode', + 'changelog', ] # Add any paths that contain templates here, relative to this directory. @@ -204,3 +205,8 @@ autodoc_member_order = 'bysource' autoclass_content = 'both' + + +# -- Options for changelog --------------------------------------------------- + +changelog_inner_tag_sort = ['feature', 'bugfix', 'doc']
