diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d40d2d4f..c6d63dd60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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). +## [3.4.1](https://github.com/Parsely/wp-parsely/compare/3.4.0...3.4.1) - 2022-07-06 + +### Fixed + +- Fix missing require of class-date-builder.php ([#959](https://github.com/Parsely/wp-parsely/pull/959)) + ## [3.4.0](https://github.com/Parsely/wp-parsely/compare/3.3.2...3.4.0) - 2022-07-05 ### Added diff --git a/README.md b/README.md index d09c5c9d3..1e69f1392 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Parse.ly -Stable tag: 3.4.0 +Stable tag: 3.4.1 Requires at least: 5.0 Tested up to: 6.0 Requires PHP: 7.1 diff --git a/package-lock.json b/package-lock.json index b6297b25f..c0fa1243d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-parsely", - "version": "3.4.0", + "version": "3.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wp-parsely", - "version": "3.4.0", + "version": "3.4.1", "license": "GPL-2.0-or-later", "dependencies": { "@wordpress/dom-ready": "^3.9.0", diff --git a/package.json b/package.json index 5d2a1a994..97ab2c251 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-parsely", - "version": "3.4.0", + "version": "3.4.1", "private": true, "description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.", "author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, pauarge", diff --git a/tests/e2e/utils.js b/tests/e2e/utils.js index 17a8235f8..2512dd514 100644 --- a/tests/e2e/utils.js +++ b/tests/e2e/utils.js @@ -1,6 +1,6 @@ import { activatePlugin, loginUser, visitAdminPage } from '@wordpress/e2e-test-utils'; -export const PLUGIN_VERSION = '3.4.0'; +export const PLUGIN_VERSION = '3.4.1'; export const waitForWpAdmin = () => page.waitForSelector( 'body.wp-admin' ); diff --git a/wp-parsely.php b/wp-parsely.php index 77d00f698..e3fe87f89 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 and metadata to your WordPress blog. - * Version: 3.4.0 + * Version: 3.4.1 * Author: Parse.ly * Author URI: https://www.parse.ly * Text Domain: wp-parsely @@ -52,7 +52,7 @@ return; } -const PARSELY_VERSION = '3.4.0'; +const PARSELY_VERSION = '3.4.1'; const PARSELY_FILE = __FILE__; require __DIR__ . '/src/class-parsely.php'; @@ -67,6 +67,7 @@ require __DIR__ . '/src/Metadata/class-metadata-builder.php'; require __DIR__ . '/src/Metadata/class-author-archive-builder.php'; require __DIR__ . '/src/Metadata/class-category-builder.php'; +require __DIR__ . '/src/Metadata/class-date-builder.php'; require __DIR__ . '/src/Metadata/class-front-page-builder.php'; require __DIR__ . '/src/Metadata/class-page-builder.php'; require __DIR__ . '/src/Metadata/class-page-for-posts-builder.php';