# HG changeset patch # User Mads Kiilerich # Date 2016-07-28 16:28:34 # Node ID 7c732f2047f8674393a72aae04c4644398ddae60 # Parent 2bbe01602ee478ca15a5c8e416ff9992f5d9bf6e docs: drop empty Changelog in the documentation Changelog.rst is empty and just refer to the Mercurial logs. More readable release notes and other meta information is also available on the web site and in announcement mails. diff --git a/docs/changelog.rst b/docs/changelog.rst deleted file mode 100644 --- a/docs/changelog.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. _changelog: - -========= -Changelog -========= - -Kallithea project doesn't keep its changelog here. We refer you to our `Mercurial logs`__. - - -.. __: https://kallithea-scm.org/repos/kallithea/changelog diff --git a/docs/index.rst b/docs/index.rst --- a/docs/index.rst +++ b/docs/index.rst @@ -55,7 +55,6 @@ Kallithea Documentation contributing dev/translation dev/dbmigrations - changelog **API** diff --git a/scripts/manifest b/scripts/manifest --- a/scripts/manifest +++ b/scripts/manifest @@ -23,7 +23,6 @@ docs/Makefile docs/api/ docs/api/api.rst docs/api/models.rst -docs/changelog.rst docs/conf.py docs/contributing.rst docs/images/ diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -97,15 +97,12 @@ keywords = ' '.join([ # long description README_FILE = 'README.rst' -CHANGELOG_FILE = 'docs/changelog.rst' try: - long_description = open(README_FILE).read() + '\n\n' + \ - open(CHANGELOG_FILE).read() - + long_description = open(README_FILE).read() except IOError as err: sys.stderr.write( - "[WARNING] Cannot find file specified as long_description (%s)\n or " - "changelog (%s) skipping that file" % (README_FILE, CHANGELOG_FILE) + "[WARNING] Cannot find file specified as long_description (%s)\n" + % README_FILE ) long_description = description