diff --git a/README.md b/README.md
index 14e0680f2076371c666c5be214a4e2bb977f1f44..46e5e311f1f394e41afdb526038ac25d28d57065 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,11 @@ So far the following EOS are implemented:
 
 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
 
 For windows and OSX, you should be able to install the most recent version from PYPI with
diff --git a/setup.py b/setup.py
index 873ce4f5cfea0e8d230958aad42367d0b904a507..4a110bdee3b837959ca9b041f04a436ff24a5fd7 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.2.1dev'
+VERSION = '0.3.0'
 with open('interface/teqpversion.hpp','w') as fpver:
     fpver.write(f'#include <string>\nconst std::string TEQPVERSION = "{VERSION}";')