From fba58a43980385019ceb593f88ab8821e17840c0 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:57:57 +0100 Subject: [PATCH] Bump to 1.0.0 --- alabaster/__init__.py | 4 ++-- docs/changelog.rst | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/alabaster/__init__.py b/alabaster/__init__.py index b42431c..f58fe27 100644 --- a/alabaster/__init__.py +++ b/alabaster/__init__.py @@ -1,7 +1,7 @@ import os -__version_info__ = (0, 7, 16) -__version__ = "0.7.16" +__version_info__ = (1, 0, 0) +__version__ = "1.0.0" def get_path(): diff --git a/docs/changelog.rst b/docs/changelog.rst index 2cadad2..401b51b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,21 @@ Changelog Next release (in development) ----------------------------- +:git_tag:`1.0.0` -- 2024-07-26 +------------------------------ + +- Dropped support for Python 3.9 and earlier. +- Dropped support for Sphinx 6.1 and earlier. +- Use a new SVG image for the GitHub banner. +- :feature:`217` Use the new *searchfield* component for the search box. + Patch by Tim Hoffmann. +- :feature:`104` Allow translating strings in ``relations.html``. +- :bug:`125` Do not underline linked images. + Patch by Joshua Bronson. +- :bug:`169` Do not ignore the Pygments background colour. + Patch by Matthias Geier. +- :bug:`174` Fix clipping caused by incorrect CSS breakpoints. + :git_tag:`0.7.16` -- 2024-01-10 -------------------------------