diff --git a/README.md b/README.md
index 090e14d5620d72726e36d31dde61ffe03accdb18..8a1b82c52b27938a7688aed75ed2d236a5cbb9db 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,7 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
 ## Changelog ##
 
 ### 1.3 ###
+* Add bulk actions to purge excess or all revisions.
 * Introduce unit tests.
 * Conform to coding standards.
 
@@ -50,6 +51,9 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
 
 ## Upgrade Notice ##
 
+### 1.3 ###
+Introduces bulk actions for purging revisions, along with unit tests. The plugin also conforms to coding standards.
+
 ### 1.2.1 ###
 Introduces Spanish translation thanks to Maria Ramos at [WebHostingHub](http://www.webhostinghub.com/).
 
diff --git a/languages/wp-revisions-control.pot b/languages/wp-revisions-control.pot
index f865ce422da4bd3827d768da24b48b20af8a5a9e..8dc051bd0fb716cdc335697dbde8053c619520d0 100644
--- a/languages/wp-revisions-control.pot
+++ b/languages/wp-revisions-control.pot
@@ -5,7 +5,7 @@ msgstr ""
 "Project-Id-Version: WP Revisions Control 1.3\n"
 "Report-Msgid-Bugs-To: "
 "https://wordpress.org/support/plugin/wp-revisions-control\n"
-"POT-Creation-Date: 2019-05-26 17:40:54+00:00\n"
+"POT-Creation-Date: 2019-05-26 19:01:37+00:00\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -25,17 +25,25 @@ msgstr ""
 "X-Poedit-Bookmarks: \n"
 "X-Textdomain-Support: yes\n"
 
-#: inc/class-wp-revisions-control.php:149
+#: inc/class-wp-revisions-control-bulk-actions.php:49
+msgid "Purge excess revisions"
+msgstr ""
+
+#: inc/class-wp-revisions-control-bulk-actions.php:50
+msgid "Purge ALL revisions"
+msgstr ""
+
+#: inc/class-wp-revisions-control.php:159
 msgid ""
 "Set the number of revisions to save for each post type listed. To retain "
 "all revisions for a given post type, leave the field empty."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:150
+#: inc/class-wp-revisions-control.php:160
 msgid "If a post type isn't listed, revisions are not enabled for that post type."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:161
+#: inc/class-wp-revisions-control.php:171
 #. translators: 1. Filter tag.
 msgid ""
 "A local change is causing this plugin's functionality to run at a priority "
@@ -43,54 +51,54 @@ msgid ""
 "please unhook any functions from the %1$s filter."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:278
+#: inc/class-wp-revisions-control.php:288
 msgid "Revisions"
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:300
+#: inc/class-wp-revisions-control.php:310
 msgid "Processing…"
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:301
+#: inc/class-wp-revisions-control.php:311
 msgid "Are you sure you want to remove revisions from this post?"
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:302
+#: inc/class-wp-revisions-control.php:312
 msgid "Autosave"
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:303
+#: inc/class-wp-revisions-control.php:313
 msgid "There are no revisions to remove."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:304
+#: inc/class-wp-revisions-control.php:314
 msgid "An error occurred. Please refresh the page and try again."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:325
+#: inc/class-wp-revisions-control.php:335
 msgid "Purge these revisions"
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:331
+#: inc/class-wp-revisions-control.php:341
 #. translators: 1. Text input field.
 msgid ""
 "Limit this post to %1$s revisions. Leave this field blank for default "
 "behavior."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:356
+#: inc/class-wp-revisions-control.php:366
 msgid "No post ID was provided. Please refresh the page and try again."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:358
+#: inc/class-wp-revisions-control.php:368
 msgid "Invalid request. Please refresh the page and try again."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:360
+#: inc/class-wp-revisions-control.php:370
 msgid "You are not allowed to edit this post."
 msgstr ""
 
-#: inc/class-wp-revisions-control.php:392
+#: inc/class-wp-revisions-control.php:402
 #. translators: 1. Number of removed revisions, already formatted for locale.
 msgid "Removed %1$s revisions associated with this post."
 msgstr ""
diff --git a/readme.txt b/readme.txt
index d1cd518e69ff10dbc0da8a16812968bc21976734..7b82401f7787db73f1abc29d0414d62ac710cdf8 100644
--- a/readme.txt
+++ b/readme.txt
@@ -36,6 +36,7 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
 == Changelog ==
 
 = 1.3 =
+* Add bulk actions to purge excess or all revisions.
 * Introduce unit tests.
 * Conform to coding standards.
 
@@ -50,6 +51,9 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
 
 == Upgrade Notice ==
 
+= 1.3 =
+Introduces bulk actions for purging revisions, along with unit tests. The plugin also conforms to coding standards.
+
 = 1.2.1 =
 Introduces Spanish translation thanks to Maria Ramos at [WebHostingHub](http://www.webhostinghub.com/).