diff --git a/README.md b/README.md
index 46e5e311f1f394e41afdb526038ac25d28d57065..e57d6f0428f8fd1b8dea013466839900390c8742 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,7 @@ Written by Ian Bell, NIST.
 ## Changelog
 
 0.3.0 Add integration options to the tracing of the critical curve; fix ``__version__``
+
 0.2.0 Add fluid files to the python package
 
 ## Install
diff --git a/buildwheels.py b/buildwheels.py
index 61715a3a3744965d1caceb1a74cf01e49ca57226..8ce565a12ca0f81b31a9a4836c410a7b8fddbe24 100644
--- a/buildwheels.py
+++ b/buildwheels.py
@@ -21,8 +21,8 @@ else:
             raise KeyError(f'You must set the twine environment variable {k}')
 
 def build():
+    """ Build the wheel """
     for pyver in ['3.7','3.8','3.9']:
-        # Build the wheel if it is not already built
         abbrv = pyver.replace('.', '')
         condaenv = f'conda-{pyver}'
         subprocess.check_call(f'conda create -y -n {condaenv} python={pyver}', shell=True)
diff --git a/setup.py b/setup.py
index 4a110bdee3b837959ca9b041f04a436ff24a5fd7..f40df4daf02b95eeb3dd7c51d32463c5842b4bb2 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ from setuptools import setup, Extension
 from setuptools.command.build_ext import build_ext
 from distutils.version import LooseVersion
 
-VERSION = '0.3.0'
+VERSION = '0.3.1.dev'
 with open('interface/teqpversion.hpp','w') as fpver:
     fpver.write(f'#include <string>\nconst std::string TEQPVERSION = "{VERSION}";')