Skip to content

Commit

Permalink
Update version numbers to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishutchinson committed Jan 11, 2016
1 parent 52e1d02 commit 248cfbf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions acf-to-wp-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
*/

Expand All @@ -25,6 +25,7 @@ class ACFtoWPAPI {
*
* @author Chris Hutchinson <[email protected]>
*
* @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
*/
Expand All @@ -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 ) );

Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 248cfbf

Please sign in to comment.