Skip to content

Commit

Permalink
Preparing src for release 5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Tsao committed Apr 1, 2014
1 parent 8303a00 commit 4efd39f
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 8 deletions.
9 changes: 5 additions & 4 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

AdWords:
- Fixed [issue #21](https://github.com/googleads/googleads-php-lib/issues/21).
- Fixed [issue #19](https://github.com/googleads/googleads-php-lib/issues/19).

DFP:
- Fixed [pull request #18](https://github.com/googleads/googleads-php-lib/pull/18 "googleads-php-lib pull request #18").
- Fixed [pull request #18](https://github.com/googleads/googleads-php-lib/pull/18).

Common:
- Fixed [issue #24](https://github.com/googleads/googleads-php-lib/issues/24 "googleads-php-lib issue #24").
- Fixed [issue #24](https://github.com/googleads/googleads-php-lib/issues/24).
- Fixed [issue #10](https://github.com/googleads/googleads-php-lib/issues/10).
- Fixed [pull request #11](https://github.com/googleads/googleads-php-lib/pull/11 "googleads-php-lib pull request #11").
- Fixed [pull request #11](https://github.com/googleads/googleads-php-lib/pull/11).

### 5.2.1

Expand Down Expand Up @@ -46,7 +47,7 @@ Common:
### 5.1.0

AdWords:
- Fixed [issue #9](https://github.com/googleads/googleads-php-lib/issues/9 "googleads-php-lib issue #9") - removing unused criteria object in example.
- Fixed [issue #9](https://github.com/googleads/googleads-php-lib/issues/9).
- Added support for AdWords Express for v201309 (invite-only feature).

DFP:
Expand Down
33 changes: 33 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "googleads/googleads-php-lib",
"description": "Google Ads APIs Client Library for PHP (AdWords, Adx, and DFP)",
"require": {
"php": ">=5.2.0"
},
"type": "library",
"homepage": "https://github.com/googleads/googleads-php-lib",
"license": "Apache-2.0",
"include-path": ["src/"],
"authors": [
{
"name": "Paul Matthews",
"role": "Developer"
},
{
"name": "Adam Rogal",
"role": "Developer"
},
{
"name": "Mat Scales",
"role": "Developer"
},
{
"name": "Vincent Tsao",
"role": "Developer"
},
{
"name": "Ray Tsang",
"role": "Developer"
}
]
}
2 changes: 1 addition & 1 deletion examples/AdWords/Auth/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
error_reporting(E_STRICT | E_ALL);

$depth = '/../../../';
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');

// Configure include path.
Expand Down
2 changes: 1 addition & 1 deletion examples/AdWords/v201309/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
error_reporting(E_STRICT | E_ALL);

$depth = '/../../../';
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');
Expand Down
2 changes: 1 addition & 1 deletion examples/AdWords/v201402/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
error_reporting(E_STRICT | E_ALL);

$depth = '/../../../';
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');
Expand Down
2 changes: 1 addition & 1 deletion examples/Adx/v201306/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
error_reporting(E_STRICT | E_ALL);

$depth = '/../../../';
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');
Expand Down

0 comments on commit 4efd39f

Please sign in to comment.