Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DAreRodz committed Mar 26, 2021
2 parents 208bf57 + 8c6b801 commit 921d0bb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .changeset/poor-planes-behave.md

This file was deleted.

6 changes: 6 additions & 0 deletions plugins/frontity-headtags/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# frontity-headtags

## 1.2.1

### Patch Changes

- [`8a28bb2`](https://github.com/frontity/wp-plugins/commit/8a28bb2440ed93e2c1ff536c61bd948817119df5) [#51](https://github.com/frontity/wp-plugins/pull/51) - Return an empty array when there is no `<head>` tag.

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/frontity-headtags/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontity-headtags",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"license": "GPLv2",
"scripts": {}
Expand Down
4 changes: 2 additions & 2 deletions plugins/frontity-headtags/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: REST API - Head Tags
* Description: Adds all the meta tags of the head section to WordPress REST API responses, including the ones generated by SEO plugins like Yoast or All in One SEO.
* Plugin URI: http://github.com/frontity/wp-plugins
* Version: 1.2.0
* Version: 1.2.1
*
* Author: Frontity
* Author URI: https://frontity.org
Expand All @@ -15,7 +15,7 @@
* @package Frontity_Headtags
*/

define( 'FRONTITY_HEADTAGS_VERSION', '1.2.0' );
define( 'FRONTITY_HEADTAGS_VERSION', '1.2.1' );

if ( ! class_exists( 'Frontity_Plugin' ) ) {
require_once plugin_dir_path( __FILE__ ) . '../../shared/class-frontity-plugin.php';
Expand Down
8 changes: 7 additions & 1 deletion plugins/frontity-headtags/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: poliuk, luisherranz, rmartinezduque, orballo, davidarenas, santosguillamot, frontity
Tags: seo, rest, api, yoast, meta, tags, head, frontity
Requires at least: 4.7
Tested up to: 5.6
Tested up to: 5.7
Stable tag: trunk
Requires PHP: 5.6
License: GPLv3
Expand Down Expand Up @@ -162,6 +162,12 @@ Yes, it works with both Yoast SEO and All in One SEO plugins. We actually plan t

== Changelog ==

= 1.2.1 =

Patch Changes:
- Return an empty array when there is no `<head>` tag.


= 1.2.0 =

Minor Changes:
Expand Down

0 comments on commit 921d0bb

Please sign in to comment.