Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 82e0b55

Browse files
author
Jens Schulze
committed
Merge branch 'hotfix/v1.6.1'
2 parents 18bfc72 + 46ec03c commit 82e0b55

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ before_script:
3535
- if [ $PHP != '5.4' ] ; then composer install -o --prefer-dist; fi
3636
script:
3737
- ant phpcs-ci
38-
- phpunit --testsuite=unit
38+
- vendor/bin/phpunit --testsuite=unit
3939
- if [ $PHP == '7.0' ] ; then phpunit --testsuite=integration; fi
4040
- ant behat
4141
after_success:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.6.1"></a>
2+
## [1.6.1](https://github.com/commercetools/commercetools-php-sdk/compare/v1.6.0...v1.6.1) (2017-02-14)
3+
4+
5+
### Bug Fixes
6+
7+
* **Product:** correct type of sku in product variant ([526c4c3](https://github.com/commercetools/commercetools-php-sdk/commit/526c4c3)), closes [#292](https://github.com/commercetools/commercetools-php-sdk/issues/292)
8+
9+
10+
111
<a name="1.6.0"></a>
212
# [1.6.0](https://github.com/commercetools/commercetools-php-sdk/compare/v1.5.1...v1.6.0) (2017-01-09)
313

src/AbstractHttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
abstract class AbstractHttpClient
1616
{
17-
const VERSION = '1.6.0';
17+
const VERSION = '1.6.1';
1818

1919
/**
2020
* @var AdapterInterface

src/Model/Product/ProductVariant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function fieldDefinitions()
4747
{
4848
return [
4949
'id' => [static::TYPE => 'int'],
50-
'sku' => [static::TYPE => 'int'],
50+
'sku' => [static::TYPE => 'string'],
5151
'prices' => [static::TYPE => '\Commercetools\Core\Model\Common\PriceCollection'],
5252
'price' => [static::TYPE => '\Commercetools\Core\Model\Common\Price'],
5353
'attributes' => [static::TYPE => '\Commercetools\Core\Model\Common\AttributeCollection'],

tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commercetools-php-sdk-changelog",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "commercetools PHP SDK changelog generator package description",
55
"homepage": "https://github.com/commercetools/commercetools-php-sdk",
66
"bugs": "https://github.com/commercetools/commercetools-php-sdk/issues",

0 commit comments

Comments
 (0)