Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit bd5fe42

Browse files
authored
Merge pull request #162 from woocommerce/release/1.1
Version bump and PHP min updated to 7.0
2 parents 721460a + 3da9fe5 commit bd5fe42

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "woocommerce-rest-api",
33
"title": "WooCommerce REST API",
4-
"version": "1.0.5",
4+
"version": "1.1.0",
55
"homepage": "https://woocommerce.com/",
66
"repository": {
77
"type": "git",

src/Package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Package {
1919
*
2020
* @var string
2121
*/
22-
const VERSION = '1.1.0-dev';
22+
const VERSION = '1.1.0';
2323

2424
/**
2525
* Init the package - load the REST API Server class.

woocommerce-rest-api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* Description: The WooCommerce core REST API, installed as a feature plugin for development and testing purposes. Requires WooCommerce 3.7+ and PHP 5.3+.
66
* Author: Automattic
77
* Author URI: https://woocommerce.com
8-
* Version: 1.1.0-dev
9-
* Requires PHP: 5.6
8+
* Version: 1.1.0
9+
* Requires PHP: 7.0
1010
* License: GPLv3
1111
*
1212
* @package Automattic/WooCommerce/RestApi
@@ -15,7 +15,7 @@
1515

1616
defined( 'ABSPATH' ) || exit;
1717

18-
if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) {
18+
if ( version_compare( PHP_VERSION, '7.0.0', '<' ) ) {
1919
return;
2020
}
2121

0 commit comments

Comments
 (0)