diff --git a/README.md b/README.md
index d5545863..686be73b 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
# Solr Search for WordPress #
-**Contributors:** getpantheon, Outlandish Josh, 10up, collinsinternet, andrew.taylor
+**Contributors:** getpantheon, Outlandish Josh, 10up, collinsinternet, andrew.taylor, danielbachhuber
**Tags:** search
**Requires at least:** 4.6
**Requires PHP:** 7.1
**Tested up to:** 5.2
-**Stable tag:** 2.0.0
+**Stable tag:** 2.1.0
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
@@ -166,6 +166,13 @@ To support searching by author name (e.g. where "Pantheon" would return posts au
## Changelog ##
+### 2.1.0 (May 22, 2019) ###
+* Introduces `solr_index_stat` filter for allowing additional information to be included [[#396](https://github.com/pantheon-systems/solr-power/pull/396)].
+* Introduces `solr_facet_operator` filter for allowing facet operator to be overridden [[#388](https://github.com/pantheon-systems/solr-power/pull/388)].
+* Ensures warning message appears when activating across the entire network [[#399](https://github.com/pantheon-systems/solr-power/pull/399)].
+* Parses `
` tags in Solr error response, in addition to `` [[#407](https://github.com/pantheon-systems/solr-power/pull/407)].
+* Fixes incorrect variable name when outputting schema error message [[#404](https://github.com/pantheon-systems/solr-power/pull/404)].
+
### 2.0.0 ###
* Fix PHP 7 warning caused by bad conditional
* Ensure `$post->post_author` remains user ID when processing WP_Query
diff --git a/readme.txt b/readme.txt
index fdedee5f..1b6807e5 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,10 +1,10 @@
=== Solr Search for WordPress ===
-Contributors: getpantheon, Outlandish Josh, 10up, collinsinternet, andrew.taylor
+Contributors: getpantheon, Outlandish Josh, 10up, collinsinternet, andrew.taylor, danielbachhuber
Tags: search
Requires at least: 4.6
Requires PHP: 7.1
Tested up to: 5.2
-Stable tag: 2.0.0
+Stable tag: 2.1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -166,6 +166,13 @@ To support searching by author name (e.g. where "Pantheon" would return posts au
== Changelog ==
+= 2.1.0 (May 22, 2019) =
+* Introduces `solr_index_stat` filter for allowing additional information to be included [[#396](https://github.com/pantheon-systems/solr-power/pull/396)].
+* Introduces `solr_facet_operator` filter for allowing facet operator to be overridden [[#388](https://github.com/pantheon-systems/solr-power/pull/388)].
+* Ensures warning message appears when activating across the entire network [[#399](https://github.com/pantheon-systems/solr-power/pull/399)].
+* Parses `` tags in Solr error response, in addition to `` [[#407](https://github.com/pantheon-systems/solr-power/pull/407)].
+* Fixes incorrect variable name when outputting schema error message [[#404](https://github.com/pantheon-systems/solr-power/pull/404)].
+
= 2.0.0 =
* Fix PHP 7 warning caused by bad conditional
* Ensure `$post->post_author` remains user ID when processing WP_Query
diff --git a/solr-power.php b/solr-power.php
index ac3e11cc..aff65d93 100644
--- a/solr-power.php
+++ b/solr-power.php
@@ -2,7 +2,7 @@
/**
* Plugin Name: Solr Power
* Description: Allows WordPress sites to index and search content with ApacheSolr.
- * Version: 2.0.0
+ * Version: 2.1.0
* Author: Pantheon
* Author URI: http://pantheon.io
* Text Domain: solr-for-wordpress-on-pantheon
@@ -10,7 +10,7 @@
* @package Solr_Power
**/
-define( 'SOLR_POWER_VERSION', '2.0.0' );
+define( 'SOLR_POWER_VERSION', '2.1.0' );
/**
* Copyright (c) 2011-2017 Pantheon, Matt Weber, Solr Power contributors