From 39cbbc1b614876118ce1d3209b04ea0c642033b5 Mon Sep 17 00:00:00 2001
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Date: Wed, 10 Jan 2024 00:53:21 +0000
Subject: [PATCH 1/2] Do not display logo_name == 'false'
---
alabaster/about.html | 2 +-
docs/changelog.rst | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/alabaster/about.html b/alabaster/about.html
index fdb90e1..2bf686f 100644
--- a/alabaster/about.html
+++ b/alabaster/about.html
@@ -4,7 +4,7 @@
{% if theme_logo_name|lower == 'true' %}
{{ project }}
- {% elif theme_logo_name %}
+ {% elif theme_logo_name|lower != 'false' %}
{{ theme_logo_name }}
{% endif %}
diff --git a/docs/changelog.rst b/docs/changelog.rst
index b9b711a..075c3bb 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,8 @@ Changelog
Next release (in development)
-----------------------------
+- :bug:`215` Do not display ``logo_name`` if it is set to ``False``.
+
:git_tag:`0.7.15` -- 2024-01-08
-------------------------------
From f3fdc049e4b531595bc075718a66677fbca851e3 Mon Sep 17 00:00:00 2001
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Date: Wed, 10 Jan 2024 00:55:16 +0000
Subject: [PATCH 2/2] Bump to 0.7.16
---
alabaster/__init__.py | 4 ++--
docs/changelog.rst | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/alabaster/__init__.py b/alabaster/__init__.py
index c86a8d6..8da4cac 100644
--- a/alabaster/__init__.py
+++ b/alabaster/__init__.py
@@ -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 --git a/docs/changelog.rst b/docs/changelog.rst
index 075c3bb..2cadad2 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,9 @@ Changelog
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