Skip to content

Commit

Permalink
Merge pull request #960 from Parsely/release/3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
acicovic authored Jul 6, 2022
2 parents edfdb7c + cccf599 commit dd8e8ec
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils.js
Original file line number Diff line number Diff line change
@@ -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' );

Expand Down
5 changes: 3 additions & 2 deletions wp-parsely.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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';
Expand All @@ -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';
Expand Down

0 comments on commit dd8e8ec

Please sign in to comment.