changeset 6037:7c732f2047f8

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.
author Mads Kiilerich <madski@unity3d.com>
date Thu, 28 Jul 2016 16:28:34 +0200
parents 2bbe01602ee4
children 9358211ee144
files docs/changelog.rst docs/index.rst scripts/manifest setup.py
diffstat 4 files changed, 3 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/docs/changelog.rst	Thu Jul 28 16:28:34 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/docs/index.rst	Thu Jul 28 16:28:34 2016 +0200
+++ b/docs/index.rst	Thu Jul 28 16:28:34 2016 +0200
@@ -55,7 +55,6 @@
    contributing
    dev/translation
    dev/dbmigrations
-   changelog
 
 **API**
 
--- a/scripts/manifest	Thu Jul 28 16:28:34 2016 +0200
+++ b/scripts/manifest	Thu Jul 28 16:28:34 2016 +0200
@@ -23,7 +23,6 @@
 docs/api/
 docs/api/api.rst
 docs/api/models.rst
-docs/changelog.rst
 docs/conf.py
 docs/contributing.rst
 docs/images/
--- a/setup.py	Thu Jul 28 16:28:34 2016 +0200
+++ b/setup.py	Thu Jul 28 16:28:34 2016 +0200
@@ -97,15 +97,12 @@
 
 # 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