diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 36a90da0..f478e9fb 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,8 +5,8 @@ All notable changes will appear in this log that begins with the release of ``v0
For information on the style of this change log, see `keepachangelog.com `__.
-`UNRELEASED (v0.6.0) `__
----------------------------------------------------------------------------------
+`v0.6.0 `__ - 2016-04-22
+-----------------------------------------------------------------------------------
`Milestone
v0.6.0 `__
@@ -43,6 +43,8 @@ Fixed
- ``CCDCesque``: Fix bug in parsing of ``test_indices`` if user doesn't supply any `#73 `__
- "Packaged" estimator pickles are built on installation of YATSM so they will work with user versions of libraries (`commit `__)
- Fix ``DeprecationWarnings`` with ``scikit-learn>=0.17.0`` (`commit `__)
+- ``yatsm.regression.robust_fit.RLM``: Fix a bug caused by dividing by zero. This bug only occurs when the number of observations in a time series segment is approximately equal to the number of parameters (``n ~= k``) `#86 `_
+- Fix NumPy deprecation warnings and improve ``yatsm changemap num`` performance `#83 `__
`v0.5.5 `__ - 2015-11-24
-----------------------------------------------------------------------------------
diff --git a/yatsm/version.py b/yatsm/version.py
index 73168ff3..ef7eb44d 100644
--- a/yatsm/version.py
+++ b/yatsm/version.py
@@ -1 +1 @@
-__version__ = '0.6.0dev'
+__version__ = '0.6.0'