summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/build/changelog.rst2
-rw-r--r--docs/build/conf.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index f22dd5b..2557e2a 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -58,7 +58,7 @@ Changelog
operation.
.. change::
- :tags: bug
+ :tags: bug, sqlite, mysql
:tickets: 112
transactional_ddl flag for SQLite, MySQL dialects
diff --git a/docs/build/conf.py b/docs/build/conf.py
index a91a51b..4183adb 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -33,6 +33,9 @@ import alembic
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',
'ext.changelog']
+# tags to sort on inside of sections
+changelog_sections = ["feature", "bug", "moved", "changed", "removed"]
+
changelog_render_ticket = "https://bitbucket.org/zzzeek/alembic/issue/%s/"
changelog_render_pullreq = "https://bitbucket.org/zzzeek/alembic/pull-request/%s"