diff --git a/package.json b/package.json
index d626a9e0ba..8fcd68763e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "WordPress",
-  "version": "4.5.13",
+  "version": "4.5.14",
   "description": "WordPress is web software you can use to create a beautiful website or blog.",
   "repository": {
     "type": "svn",
diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index a59fce0054..d4f15c224c 100644
--- a/src/wp-admin/about.php
+++ b/src/wp-admin/about.php
@@ -40,6 +40,9 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 
 		<div class="changelog point-releases">
 			<h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
+			<p><?php printf( __( '<strong>Version %s</strong> addressed some security issues.' ), '4.5.14' ); ?>
+				<?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.5.14' ); ?>
+			</p>
 			<p><?php printf( __( '<strong>Version %s</strong> addressed one security issue.' ), '4.5.13' ); ?>
 				<?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.5.13' ); ?>
 			</p>
diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php
index a8adeeac8c..8a8c50efad 100644
--- a/src/wp-includes/version.php
+++ b/src/wp-includes/version.php
@@ -4,7 +4,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '4.5.13-src';
+$wp_version = '4.5.14-src';
 
 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.