15
0

- update to 0.7.16:

* 🐛`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.
  * 🐛`200` Removed duplicate <meta name="viewport" ... />
    tag.
  * 🐛`188` Removed underline from whitespace.
  * 🐛`164` Removed type="text/javascript" from <script>
    elements.
  * 🐛`161` Replaced &copy; 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-alabaster?expand=0&rev=24
This commit is contained in:
2024-01-14 15:46:52 +00:00
committed by Git OBS Bridge
parent dd2187816d
commit 8f6ba299d5
4 changed files with 41 additions and 4 deletions

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Sun Jan 14 15:46:36 UTC 2024 - Dirk Müller <dmueller@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 &copy; 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.
-------------------------------------------------------------------
Mon Jan 8 20:50:45 UTC 2024 - Dirk Müller <dmueller@suse.com>