Skip to content

Commit

Permalink
Deploying version 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmjones committed May 30, 2016
1 parent 3f6ae90 commit 14500c7
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 76 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
# Amazon Web Services #
**Contributors:** bradt, deliciousbrains
**Tags:** amazon, amazon web services
**Requires at least:** 3.7
**Tested up to:** 4.3
**Requires at least:** 4.4
**Tested up to:** 4.5.2
**Stable tag:** trunk
**License:** GPLv3

Houses the Amazon Web Services (AWS) PHP libraries and manages access keys. Required by other AWS plugins.

## Description ##

This plugin is required by other plugins, which uses its libraries and its settings to connect to AWS services. Currently, there is only one plugin that requires this plugin:
This plugin is required by other plugins, which use its libraries and its settings to connect to AWS services. Currently, there are only two plugins that require this plugin:

* [WP Offload S3](http://wordpress.org/plugins/amazon-s3-and-cloudfront/)
* [WP Offload S3 Lite](http://wordpress.org/plugins/amazon-s3-and-cloudfront/)
* [WP Offload S3](https://deliciousbrains.com/wp-offload-s3/)

### Requirements ###

* PHP version 5.3.3 or greater
* PHP cURL library 7.16.2 or greater
* cURL compiled with OpenSSL and zlib
* curl_multi_exec enabled

## Installation ##

Expand All @@ -33,6 +35,9 @@ This plugin is required by other plugins, which uses its libraries and its setti

## Changelog ##

### 0.3.6 - 2016-05-30 ###
* Improvement: Now checks that the `curl_multi_exec` function is available.

### 0.3.5 - 2016-03-07 ###
* Improvement: Support for `DBI_` prefixed constants to avoid conflicts with other plugins
* Improvement: Redesign of the Addons page
Expand Down
4 changes: 2 additions & 2 deletions amazon-web-services.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://wordpress.org/extend/plugins/amazon-web-services/
Description: Includes the Amazon Web Services PHP libraries, stores access keys, and allows other plugins to hook into it.
Author: Delicious Brains
Version: 0.3.5
Version: 0.3.6
Author URI: http://deliciousbrains.com/
Network: True
Text Domain: amazon-web-services
Expand All @@ -22,7 +22,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// **********************************************************************

$GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.3.5';
$GLOBALS['aws_meta']['amazon-web-services']['version'] = '0.3.6';

$GLOBALS['aws_meta']['amazon-web-services']['supported_addon_versions'] = array(
'amazon-s3-and-cloudfront' => '0.9',
Expand Down
4 changes: 4 additions & 0 deletions classes/aws-compatibility-check.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ function get_sdk_requirements_errors() {
}
}

if ( ! function_exists( 'curl_multi_exec' ) ) {
$errors[] = __( 'the function curl_multi_exec disabled', 'amazon-web-services' );
}

return $errors;
}

Expand Down
Loading

0 comments on commit 14500c7

Please sign in to comment.