From 969c51c5bc98e2b84ce0b5da1d4cd7d03b2915f5 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Mon, 8 Jan 2024 02:35:11 +0000 Subject: [PATCH] Bump to 0.7.14 --- alabaster/__init__.py | 4 ++-- docs/changelog.rst | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/alabaster/__init__.py b/alabaster/__init__.py index be37dee..a695b9b 100644 --- a/alabaster/__init__.py +++ b/alabaster/__init__.py @@ -1,7 +1,7 @@ import os -__version_info__ = (0, 7, 13) -__version__ = "0.7.13" +__version_info__ = (0, 7, 14) +__version__ = "0.7.14" def get_path(): diff --git a/docs/changelog.rst b/docs/changelog.rst index 8cfc690..103212e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,8 +5,18 @@ Changelog Next release (in development) ----------------------------- +:git_tag:`0.7.14` -- 2024-01-08 +------------------------------- + - Dropped support for Python 3.8 and earlier. - Dropped support for Sphinx 3.3 and earlier. +- :issue:`198` Fix horizontal scrolling on mobile. +- :issue:`206` Properly support the ``html_support_sphinx`` config value. +- :issue:`211` Fix the GitHub 'forkme' banner. +- Added ``alabaster_version_info`` to the HTML template context. +- Declare support for Python 3.13. +- Adopt the Ruff linter and formatter. +- Migrate from CircleCI to GitHub Actions. :git_tag:`0.7.13` -- 2023-01-13 -------------------------------