diff --git a/CHANGELOG.md b/CHANGELOG.md index 90ebbbe7d..ea94b5347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.4.0] - 2021-04-14 +## [2.4.1] - 2021-04-13 + +### Fixed +- Fix the version number set in the main plugin file. + +## [2.4.0] - 2021-04-13 ### Added - Structured data integration tests for posts, pages, category and author archives, and home/front pages. diff --git a/README.md b/README.md index c78be2a62..406b59612 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Parse.ly -Stable tag: 2.4.0 +Stable tag: 2.4.1 Requires at least: 4.0 Tested up to: 5.6 Requires PHP: 5.6 diff --git a/package.json b/package.json index 2d57a5103..8b6a5e3f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-parsely", - "version": "2.4.0", + "version": "2.4.1", "description": "The official WordPress plugin for Parse.ly - makes it a snap to add the required tracking code to enable Parse.ly on your WordPress site.", "main": "build/index.js", "directories": { diff --git a/wp-parsely.php b/wp-parsely.php index 2a041cd02..08d8ef6b5 100644 --- a/wp-parsely.php +++ b/wp-parsely.php @@ -11,7 +11,7 @@ * Plugin Name: Parse.ly * Plugin URI: https://www.parse.ly/help/integration/wordpress * Description: This plugin makes it a snap to add Parse.ly tracking code to your WordPress blog. - * Version: 2.4.0 + * Version: 2.4.1 * Author: Parse.ly * Author URI: https://www.parse.ly * Text Domain: wp-parsely @@ -34,7 +34,7 @@ class Parsely { * * @codeCoverageIgnoreStart */ - const VERSION = '2.3'; + const VERSION = '2.4.1'; const MENU_SLUG = 'parsely'; // Defines the page param passed to options-general.php. const MENU_TITLE = 'Parse.ly'; // Text to be used for the menu as seen in Settings sub-menu. const MENU_PAGE_TITLE = 'Parse.ly > Settings'; // Text shown in when the settings screen is viewed.