diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 06757401208da409e58ac6ac9fd66b85db9ab692..d52a95da30dd45bf3875da42ae51a0d65a11fff7 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,6 +2,14 @@
 =====================
 
 
+0.13.1 (Saturday 21st December 2024)
+------------------------------------
+
+
+* Pyfeeds now prints platform information (including the host name), to make
+  it easier to know what system a test run was executed on.
+
+
 0.13.0 (Tuesday 17th December 2024)
 -----------------------------------
 
diff --git a/pyfeeds/__init__.py b/pyfeeds/__init__.py
index ef100b9277cd791d474a8e70ddb6324728a9eaf7..294e66ac205b9a433ee35c468ad686c435e89d2b 100644
--- a/pyfeeds/__init__.py
+++ b/pyfeeds/__init__.py
@@ -5,7 +5,7 @@
 # Author: Paul McCarthy <pauldmccarthy@gmail.com>
 #
 
-__version__ = '0.13.0'
+__version__ = '0.13.1'
 """The pyfeeds version number. """
 
 
diff --git a/pyfeeds/main.py b/pyfeeds/main.py
index 043b4136c7e1d936330247cd0cf01bd97b16167c..6f757fa09b53f41ad0775c615daaced7b422d774 100755
--- a/pyfeeds/main.py
+++ b/pyfeeds/main.py
@@ -68,6 +68,7 @@ import            logging
 import            fnmatch
 import            argparse
 import            datetime
+import            platform
 import            functools
 import            configparser
 from collections import OrderedDict
@@ -373,6 +374,7 @@ def main(argv=None):
     pyfeeds = Pyfeeds(args, cfg)
 
     log.info('pyfeeds %s', pyfeeds_version)
+    log.info(' '.join(platform.uname()))
 
     # Do that thing we were asked to do.
     # runTests and compareDirs return