Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-alabaster for openSUSE:Factory checked in at 2024-01-15 22:11:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-alabaster (Old) and /work/SRC/openSUSE:Factory/.python-alabaster.new.21961 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-alabaster" Mon Jan 15 22:11:27 2024 rev:10 rq:1138674 version:0.7.16 Changes: -------- --- /work/SRC/openSUSE:Factory/python-alabaster/python-alabaster.changes 2024-01-09 20:49:23.643654503 +0100 +++ /work/SRC/openSUSE:Factory/.python-alabaster.new.21961/python-alabaster.changes 2024-01-15 22:11:37.730163216 +0100 @@ -1,0 +2,37 @@ +Sun Jan 14 15:46:36 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- update to 0.7.16: + * :bug:`215` Do not display logo_name if it is set to False. + * :feature:`213` Allow an arbitrary string in the logo_name + option. + * :feature:`114` Improved sidebar CSS styles. + * :issue:`178` Deprecated canonical_url in favor of + html_baseurl. + * :bug:`200` Removed duplicate <meta name="viewport" ... /> + tag. + * :bug:`188` Removed underline from whitespace. + * :bug:`164` Removed type="text/javascript" from <script> + elements. + * :bug:`161` Replaced © with unicode decimal code entity + #169;. + * 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. + * Modernized the project: s/Travis/Circle/ for CI, README + badges, setup.cfg removal, metadata refresh, etc. + * Modernized the project: s/Travis/Circle/ for CI, README + badges, setup.cfg removal, metadata refresh, etc. + * Dropped support for Python 2 and Python <3.6. This includes + various minor updates to work correctly with modern versions + of Sphinx (1.6 at the very least). Thanks to Adam Turner for + a pile of patches here. Warning This change is backwards + incompatible if you're on an old Python version. + +------------------------------------------------------------------- Old: ---- alabaster-0.7.15.tar.gz New: ---- alabaster-0.7.16.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-alabaster.spec ++++++ --- /var/tmp/diff_new_pack.7rs6Tb/_old 2024-01-15 22:11:39.362222904 +0100 +++ /var/tmp/diff_new_pack.7rs6Tb/_new 2024-01-15 22:11:39.378223490 +0100 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-alabaster -Version: 0.7.15 +Version: 0.7.16 Release: 0 Summary: Modified Kr Sphinx doc theme License: BSD-3-Clause ++++++ alabaster-0.7.15.tar.gz -> alabaster-0.7.16.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.15/PKG-INFO new/alabaster-0.7.16/PKG-INFO --- old/alabaster-0.7.15/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/alabaster-0.7.16/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: alabaster -Version: 0.7.15 +Version: 0.7.16 Summary: A light, configurable Sphinx theme Author-email: Jeff Forcier <j...@bitprophet.org> Maintainer: The Sphinx Developers diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.15/alabaster/__init__.py new/alabaster-0.7.16/alabaster/__init__.py --- old/alabaster-0.7.15/alabaster/__init__.py 2024-01-08 05:01:23.666214200 +0100 +++ new/alabaster-0.7.16/alabaster/__init__.py 2024-01-10 01:55:45.387489600 +0100 @@ -1,7 +1,7 @@ import os -__version_info__ = (0, 7, 15) -__version__ = "0.7.15" +__version_info__ = (0, 7, 16) +__version__ = "0.7.16" def get_path(): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.15/alabaster/about.html new/alabaster-0.7.16/alabaster/about.html --- old/alabaster-0.7.15/alabaster/about.html 2024-01-08 05:01:23.666214200 +0100 +++ new/alabaster-0.7.16/alabaster/about.html 2024-01-10 01:55:45.387489600 +0100 @@ -4,7 +4,7 @@ <img class="logo" src="{{ pathto('_static/' ~ theme_logo, 1) }}" alt="Logo" /> {% if theme_logo_name|lower == 'true' %} <h1 class="logo logo-name">{{ project }}</h1> - {% elif theme_logo_name %} + {% elif theme_logo_name|lower != 'false' %} <h1 class="logo logo-name">{{ theme_logo_name }}</h1> {% endif %} </a> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/alabaster-0.7.15/docs/changelog.rst new/alabaster-0.7.16/docs/changelog.rst --- old/alabaster-0.7.15/docs/changelog.rst 2024-01-08 05:01:23.666214200 +0100 +++ new/alabaster-0.7.16/docs/changelog.rst 2024-01-10 01:55:45.387489600 +0100 @@ -5,6 +5,11 @@ Next release (in development) ----------------------------- +:git_tag:`0.7.16` -- 2024-01-10 +------------------------------- + +- :bug:`215` Do not display ``logo_name`` if it is set to ``False``. + :git_tag:`0.7.15` -- 2024-01-08 -------------------------------