Skip to content

Commit 0aca68f

Browse files
authored
Merge pull request #3756 from Parsely/develop
2 parents 34e4ae8 + 67ff283 commit 0aca68f

File tree

8 files changed

+18
-8
lines changed

8 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.21.1](https://github.com/Parsely/wp-parsely/compare/3.21.0...3.21.1) - 2025-10-13
9+
10+
### Fixed
11+
12+
- Settings page: Fix Headline Testing documentation link ([#3753](https://github.com/Parsely/wp-parsely/pull/3753))
13+
814
## [3.21.0](https://github.com/Parsely/wp-parsely/compare/3.20.8...3.21.0) - 2025-10-13
915

1016
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parse.ly
22

3-
Stable tag: 3.21.0
3+
Stable tag: 3.21.1
44
Requires at least: 6.0
55
Tested up to: 6.8
66
Requires PHP: 7.4

docs/TESTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ composer testwp -- --filter SettingsPageTest
5454
5555
# Run all multisite integration tests.
5656
composer testwp-ms
57+
58+
# Run with coverage.
59+
composer coveragewp
60+
composer coveragewp -- --filter SettingsPageTest
5761
```
5862

5963
### Troubleshooting

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-parsely",
3-
"version": "3.21.0",
3+
"version": "3.21.1",
44
"private": true,
55
"description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.",
66
"author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, acicovic, mehmoodak, vaurdan",

src/UI/class-settings-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ private function initialize_headline_testing_section(): void {
544544
__( 'Headline Testing', 'wp-parsely' ),
545545
function (): void {
546546
echo '<p>' . esc_html__( 'Configure Parse.ly Headline Testing to automatically test different headline variations and optimize for engagement.', 'wp-parsely' ) . '</p>';
547-
echo '<p><a href="https://docs.parse.ly/install-headline-testing/" target="_blank" rel="noopener noreferrer">' . esc_html__( 'Learn more about Headline Testing', 'wp-parsely' ) . '</a></p>';
547+
echo '<p><a href="https://docs.parse.ly/dashboard/optimization-menu/headline-testing-tab/" target="_blank" rel="noopener noreferrer">' . esc_html__( 'Learn more about Headline Testing', 'wp-parsely' ) . '</a></p>';
548548
},
549549
Parsely::MENU_SLUG
550550
);

tests/e2e/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { type Page } from '@playwright/test';
88
*/
99
import { Admin } from '@wordpress/e2e-test-utils-playwright';
1010

11-
export const PLUGIN_VERSION = '3.21.0';
11+
export const PLUGIN_VERSION = '3.21.1';
1212
export const VALID_SITE_ID = 'demoaccount.parsely.com';
1313
export const INVALID_SITE_ID = 'invalid.parsely.com';
1414
export const VALID_API_SECRET = 'valid_api_secret';

wp-parsely.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Plugin Name: Parse.ly
1212
* Plugin URI: https://docs.parse.ly/wordpress
1313
* Description: This plugin makes it a snap to add Parse.ly tracking code and metadata to your WordPress blog.
14-
* Version: 3.21.0
14+
* Version: 3.21.1
1515
* Author: Parse.ly
1616
* Author URI: https://www.parse.ly
1717
* Text Domain: wp-parsely
@@ -50,7 +50,7 @@
5050
return;
5151
}
5252

53-
const PARSELY_VERSION = '3.21.0';
53+
const PARSELY_VERSION = '3.21.1';
5454
const PARSELY_FILE = __FILE__;
5555
const PARSELY_DATA_SCHEMA_VERSION = '1';
5656
const PARSELY_CACHE_GROUP = 'wp-parsely';

0 commit comments

Comments
 (0)