From 248cfbf00b2d30c1e16d5fe2c375b04743f93cd2 Mon Sep 17 00:00:00 2001 From: Chris Hutchinson Date: Mon, 11 Jan 2016 13:52:44 +0000 Subject: [PATCH] Update version numbers to 1.3.3 --- README.md | 8 ++++++-- acf-to-wp-api.php | 5 +++-- readme.txt | 8 ++++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e4d0882..9585d2e 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Contributors: chrishutchinson, kokarn, ramvi Tags: acf, api, wp-api Requires at least: 3.9.0 -Tested up to: 4.3.0 -Stable tag: 1.3.2 +Tested up to: 4.4.1 +Stable tag: 1.3.3 License: MIT License URI: http://opensource.org/licenses/MIT @@ -39,6 +39,10 @@ Request a specific option, by passing in the option name ## Changelog +### 1.3.3 + +* Compatibility fix for V2.0Beta9 + ### 1.3.2 * Adds support for custom post types when using v2 of the REST API diff --git a/acf-to-wp-api.php b/acf-to-wp-api.php index e6f825c..6be2964 100644 --- a/acf-to-wp-api.php +++ b/acf-to-wp-api.php @@ -4,7 +4,7 @@ * Description: Puts all ACF fields from posts, pages, custom post types, attachments and taxonomy terms, into the WP-API output under the 'acf' key * Author: Chris Hutchinson * Author URI: http://www.chrishutchinson.me - * Version: 1.3.2 + * Version: 1.3.3 * Plugin URI: https://wordpress.org/plugins/acf-to-wp-api/ */ @@ -25,6 +25,7 @@ class ACFtoWPAPI { * * @author Chris Hutchinson * + * @since 1.3.3 Compatibility fix for V2.0Beta9 * @since 1.3.0 Updated to support version 2 of the WP-API * @since 1.0.0 */ @@ -35,7 +36,7 @@ function __construct() { $this->plugin->name = 'acf-to-wp-api'; $this->plugin->folder = WP_PLUGIN_DIR . '/' . $this->plugin->name; $this->plugin->url = WP_PLUGIN_URL . '/' . str_replace(basename( __FILE__), "", plugin_basename(__FILE__)); - $this->plugin->version = '1.3.2'; + $this->plugin->version = '1.3.3'; $this->apiVersion = (REST_API_VERSION) ?: get_option( 'rest_api_plugin_version', get_option( 'json_api_plugin_version', null ) ); diff --git a/readme.txt b/readme.txt index 389fc03..11ff02d 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: chrishutchinson, kokarn, ramvi Tags: acf, api, wp-api Requires at least: 3.9.0 -Tested up to: 4.3.0 -Stable tag: 1.3.2 +Tested up to: 4.4.1 +Stable tag: 1.3.3 License: MIT License URI: http://opensource.org/licenses/MIT @@ -32,6 +32,10 @@ See GitHub issue #13 (http://github.com/times/acf-to-wp-api/issues/13) for examp == Changelog == += 1.3.3 = + +* Compatibility fix for V2.0Beta9 + = 1.3.2 = * Adds support for custom post types when using v2 of the REST API