diff --git a/NEWS.rst b/NEWS.rst
index 13985db3fee2baf7736a4058bd49a8552ed0881b..8307c1010a8f824a0d3b23bbf711249ddf9addfd 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,18 @@
+0.7.1 (2022-05-30)
+------------------
+
+* Enhancement: ``epifx-forecast`` requires at least one scenario file.
+  Previously, ``epifx-forecast`` would run no simulations and return successfully if no scenario files were provided.
+  This is unlikely to be useful behaviour, and it now complains that a required argument is missing.
+
+* Enhancement: ``epifx-forecast`` notifies the user when an estimation pass has no associated forecast dates, in case the user intended to run one or more forecast simulations.
+
+* Enhancement: ``epifx-forecast`` logs the scenario identifier before running each scenario instance.
+
+* Documentation: replace the "Getting Started" guide with separate sections for all of the individual parts that ``epifx`` adds to the base ``pypfilt`` package.
+
+* Documentation: add an example for each summary table.
+
 0.7.0 (2022-04-20)
 ------------------
 
diff --git a/doc/conf.py b/doc/conf.py
index 33291fc906a3205cd94d58d8497a4765ddf3a17e..edc3144c3dee1ef986eab4fec368bcdb46a6a9e2 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -79,7 +79,7 @@ copyright = u'2014-22, Rob Moss'
 # The short X.Y version.
 version = '0.7'
 # The full version, including alpha/beta/rc tags.
-release = '0.7.0'
+release = '0.7.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/setup.cfg b/setup.cfg
index 39dd9ca94fe0b695cd55797df512c99b36fb4fa3..b59523ce484e308d84c6a8a426c5e5de269db4d3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = epifx
-version = 0.7.0
+version = 0.7.1
 url = https://bitbucket.org/robmoss/epidemic-forecasting-for-python/
 project_urls =
     Documentation = https://epifx.readthedocs.io/en/latest/
diff --git a/src/epifx/version.py b/src/epifx/version.py
index 3bbb4e56b76851ba7f249b6ddb250c41102dbe83..fbae9d7017f02a9343e66bb4540bd3669c25a592 100644
--- a/src/epifx/version.py
+++ b/src/epifx/version.py
@@ -1,3 +1,3 @@
 """Define the package version in a submodule to allow relative imports."""
 
-__version__ = u'0.7.0'
+__version__ = u'0.7.1'