diff --git a/README.md b/README.md
index 6838e00c..aa878865 100644
--- a/README.md
+++ b/README.md
@@ -14,12 +14,13 @@ This project started at the [2018 Electrochemical Society (ECS) Hack Week in Sea
Using a [scikit-learn-like API](https://arxiv.org/abs/1309.0238), we hope to make visualizing, fitting, and analyzing impedance spectra more intuitive and reproducible.
-impedance.py is currently in a beta phase and new features are rapidly being added.
+impedance.py is currently under development and new features are rapidly being added.
If you have a feature request or find a bug, please feel free to [file an issue](https://github.com/ECSHackWeek/impedance.py/issues) or, better yet, make the code improvements and [submit a pull request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)! The goal is to build an open-source tool that the entire impedance community can improve and use!
impedance.py currently provides:
+- [preprocessing functions](https://impedancepy.readthedocs.io/en/latest/preprocessing.html) for easily loading in impedance data from a wide variety of file types
- a simple API for fitting, predicting, and plotting impedance
-- validation methods for checking measurement validity
+- [validation methods](https://impedancepy.readthedocs.io/en/latest/validation.html) for checking measurement validity
- equivalent circuit fitting with customizable models
- convenient Nyquist plots including confidence interval estimation for fit circuits
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 61d4884d..c8af3f40 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -24,9 +24,9 @@
author = ''
# The short X.Y version
-version = '0.4'
+version = '0.5'
# The full version, including alpha/beta/rc tags
-release = '0.4-beta'
+release = '0.5'
# -- General configuration ---------------------------------------------------
diff --git a/setup.py b/setup.py
index 7bdb18b7..2eb1dd9e 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
setuptools.setup(
name="impedance",
- version="0.4.0",
+ version="0.5.0",
author="impedance.py developers",
author_email="matt.murbach@gmail.com",
description="A Python package for working with impedance data",