diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1aa5726..26c98ef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## Unreleased
 
+## v0.0.16
+
 - fix: Correctly parse excluded Post/Term IDs when returning nodes for Sitemap. Props @marcinkrzeminski
 - chore: Update Composer dev-dependencies.
 - chore!: Bump minimum supported WPGraphQL version to v1.14.0.
diff --git a/README.md b/README.md
index 5e7448f..c5094b6 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W
 
 -----
 
-![Packagist License](https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green) ![Packagist Version](https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.0.15) ![GitHub forks](https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social)<br />
+![Packagist License](https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green) ![Packagist Version](https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.0.16) ![GitHub forks](https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social)<br />
 ![CodeQuality](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality)
 ![Integration Tests](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing)
 ![Coding Standards](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)
diff --git a/phpstan/constants.php b/phpstan/constants.php
index 6e74c52..2ffd29b 100644
--- a/phpstan/constants.php
+++ b/phpstan/constants.php
@@ -7,4 +7,4 @@
 
 define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
 define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
-define( 'WPGRAPHQL_SEO_VERSION', '0.0.15' );
+define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
diff --git a/readme.txt b/readme.txt
index 8057c4b..26c7ec1 100644
--- a/readme.txt
+++ b/readme.txt
@@ -5,7 +5,7 @@ Requires at least: 6.0
 Tested up to: 6.3.2
 Requires PHP: 7.4
 Requires WPGraphQL: 1.14.0
-Stable tag: 0.0.15
+Stable tag: 0.0.16
 License: GPL-3
 License URI: https://www.gnu.org/licenses/gpl-3.0.html
 
diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php
index 6132a1f..7403055 100644
--- a/vendor/composer/installed.php
+++ b/vendor/composer/installed.php
@@ -3,7 +3,7 @@
         'name' => 'axepress/wp-graphql-rank-math',
         'pretty_version' => 'dev-develop',
         'version' => 'dev-develop',
-        'reference' => 'db243ba2341637af3e6be7e281842e2b18fd5c92',
+        'reference' => '2d3d25457b9acc5ab009e8b22973ac0830e3a53f',
         'type' => 'wordpress-plugin',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
@@ -22,7 +22,7 @@
         'axepress/wp-graphql-rank-math' => array(
             'pretty_version' => 'dev-develop',
             'version' => 'dev-develop',
-            'reference' => 'db243ba2341637af3e6be7e281842e2b18fd5c92',
+            'reference' => '2d3d25457b9acc5ab009e8b22973ac0830e3a53f',
             'type' => 'wordpress-plugin',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
diff --git a/wp-graphql-rank-math.php b/wp-graphql-rank-math.php
index 87adada..bb7cf80 100644
--- a/wp-graphql-rank-math.php
+++ b/wp-graphql-rank-math.php
@@ -7,7 +7,7 @@
  * Author: AxePress
  * Author URI: https://github.com/AxeWP
  * Update URI: https://github.com/AxeWP/wp-graphql-rank-math
- * Version: 0.0.15
+ * Version: 0.0.16
  * Text Domain: wp-graphql-rank-math
  * Domain Path: /languages
  * Requires at least: 6.0
@@ -20,7 +20,7 @@
  * @package WPGraphQL\RankMath
  * @author axepress
  * @license GPL-3
- * @version 0.0.15
+ * @version 0.0.16
  */
 
 // Exit if accessed directly.
@@ -53,7 +53,7 @@
 	function graphql_seo_constants(): void {
 		// Plugin version.
 		if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
-			define( 'WPGRAPHQL_SEO_VERSION', '0.0.15' );
+			define( 'WPGRAPHQL_SEO_VERSION', '0.0.16' );
 		}
 
 		// Plugin Folder Path.