No description
Find a file
2019-08-21 17:01:16 +02:00
docs Add the feature_uri option to integrate PR's and the like 2019-08-21 17:01:16 +02:00
integration Make integration test re #59 actually test both changelogs :D 2018-05-01 14:04:37 -07:00
releases Add the feature_uri option to integrate PR's and the like 2019-08-21 17:01:16 +02:00
tests Realized the log/warn/etc stuff really just wanted to be 'use logging, stupid' higher up. 2017-10-19 15:31:46 -07:00
.gitignore 1st stab at real Sphinx docs hurr 2013-11-11 07:45:41 -08:00
.travis.yml Support Sphinx 1.7 2018-07-02 11:38:57 -07:00
dev-requirements.txt Bump to modern pypi.org compatible twine 2018-03-23 17:09:35 -07:00
LICENSE Happy New Year 2019-01-03 15:42:17 -08:00
MANIFEST.in Add MANIFEST.in for LICENSE, etc. Fixes #30 2014-09-04 18:37:44 -07:00
README.rst Update README to explicitly note Python and Sphinx compat numbers 2017-10-19 13:58:14 -07:00
setup.cfg Just needed a little .cfg love re #51 2016-07-25 17:32:12 -07:00
setup.py Support Sphinx 1.7 2018-07-02 11:38:57 -07:00
tasks.py Tweak for new invocations release tasks 2016-12-09 11:18:05 -08:00

.. image:: https://secure.travis-ci.org/bitprophet/releases.png?branch=master
        :target: https://travis-ci.org/bitprophet/releases

What is Releases?
=================

Releases is a Python (2.7, 3.4+) compatible `Sphinx <http://sphinx-doc.org>`_
(1.3+) extension designed to help you keep a source control friendly, merge
friendly changelog file & turn it into useful, human readable HTML output.

Specifically:

* The source format (kept in your Sphinx tree as ``changelog.rst``) is a
  stream-like timeline that plays well with source control & only requires one
  entry per change (even for changes that exist in multiple release lines).
* The output (when you have the extension installed and run your Sphinx build
  command) is a traditional looking changelog page with a section for every
  release; multi-release issues are copied automatically into each release.
* By default, feature and support issues are only displayed under feature
  releases, and bugs are only displayed under bugfix releases. This can be
  overridden on a per-issue basis.

Some background on why this tool was created can be found in `this blog post
<http://bitprophet.org/blog/2013/09/14/a-better-changelog/>`_.

For more documentation, please see http://releases.readthedocs.io.

.. note::
    You can install the development version via ``pip install -e
    git+https://github.com/bitprophet/releases/#egg=releases``.