diff --git a/CHANGELOG.md b/CHANGELOG.md
index 203ff736b6a1276dd811294a45f9faed81f07a95..da29dae97810e71d3e4fbaf2bc9149cb072988e2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [Unreleased] ##
+
+### Added ###
+
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+## [0.13.1 - 2023-11-17] ##
+
+### Fixed ###
+
+* [#242](https://gitlab.com/linkahead/linkahead-webui/-/issues/242) Missing
+  LinkAhead logo in footer
+
 ## [0.13.0 - 2023-10-11] ##
 
 ### Added ###
@@ -40,10 +63,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * Update to bootstrap 5.3.1
 * Update to bootstrap-icons 1.10.5
 
-### Deprecated ###
-
-### Removed ###
-
 ### Fixed ###
 
 * The new query panel can't be deactivated.
@@ -55,8 +74,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * Fixed breaking timestamps due to whitespace
   [caosdb-webui#239](https://gitlab.com/caosdb/caosdb-webui/-/issues/239)
 
-### Security ###
-
 ### Documentation ###
 
 * Added `tools/query_template_descrtiption.yml` for easy set-up of query
diff --git a/CITATION.cff b/CITATION.cff
index 5e6a1c68698e156432f3d686d7454a0d432a6cc5..411ef9b3c7665d62e3e4bd385dbf80cfc951599b 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -20,6 +20,6 @@ authors:
     given-names: Stefan
     orcid: https://orcid.org/0000-0001-7214-8125
 title: LinkAhead - WebUI
-version: 0.13.0
+version: 0.13.1
 doi: 10.3390/data4020083
-date-released: 2023-10-11
+date-released: 2023-11-17
diff --git a/src/core/pics/logo_linkahead_no_subtitle_dark_bg_144x25.png b/src/core/pics/logo_linkahead_no_subtitle_dark_bg_144x25.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6ff2e4fd1b2734a2bccb6a26e548ddd3728846d
Binary files /dev/null and b/src/core/pics/logo_linkahead_no_subtitle_dark_bg_144x25.png differ
diff --git a/src/doc/conf.py b/src/doc/conf.py
index f0f09e6c4e18b052b2e100947bd85b6b7056b701..d3a5cab3bb44fa12514ae9e54ed5fe431d32a554 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -26,9 +26,9 @@ copyright = '2022, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.13.0'
+version = '0.13.2'
 # The full version, including alpha/beta/rc tags
-release = '0.13.0'
+release = '0.13.2-SNAPSHOT'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/src/server_side_scripting/ext_table_preview/pandas_table_preview.py b/src/server_side_scripting/ext_table_preview/pandas_table_preview.py
index 16636f7d6f739dd9a49349686075863e87c15a10..d144c2709f872825803ecb4d99b2b5ff38817a68 100755
--- a/src/server_side_scripting/ext_table_preview/pandas_table_preview.py
+++ b/src/server_side_scripting/ext_table_preview/pandas_table_preview.py
@@ -99,28 +99,28 @@ def read_file(fipath, ftype):
 def create_table_preview(fi):
     if not ending_is_valid(fi.path):
         print("Cannot create preview for Entity with ID={}, because download"
-              "failed.".format(entity_id), file=sys.stderr)
+              "failed.".format(fi.id), file=sys.stderr)
         sys.exit(5)
 
     ending = get_ending(fi.path)
 
     if not size_is_ok(fi):
         print("Skipped creating a preview for Entity with ID={}, because the"
-              "file is large!".format(entity_id), file=sys.stderr)
+              "file is large!".format(fi.id), file=sys.stderr)
         sys.exit(2)
 
     try:
         tmpfile = fi.download()
     except Exception:
         print("Cannot create preview for Entity with ID={}, because download"
-              "failed.".format(entity_id), file=sys.stderr)
+              "failed.".format(fi.id), file=sys.stderr)
 
         sys.exit(3)
 
     try:
         df = read_file(tmpfile, ending)
     except ValueError:
-        print("Cannot read File Entity with ID={}.".format(entity_id),
+        print("Cannot read File Entity with ID={}.".format(fi.id),
               file=sys.stderr)
         sys.exit(4)