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

Commit 5f432b4

Browse files
author
Jens Schulze
committed
Merge branch 'hotfix/v1.1.1'
2 parents 1d2d635 + 5ca934e commit 5f432b4

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.1.1"></a>
2+
## [1.1.1](https://github.com/sphereio/commercetools-php-sdk/compare/v1.1.0...v1.1.1) (2016-06-07)
3+
4+
5+
### Bug Fixes
6+
7+
* **LocalizedEnumCollection:** use correct type for LocalizedEnumCollection elements ([9492a8c](https://github.com/sphereio/commercetools-php-sdk/commit/9492a8c)), closes [#218](https://github.com/sphereio/commercetools-php-sdk/issues/218)
8+
9+
10+
111
<a name="1.1.0"></a>
212
# [1.1.0](https://github.com/sphereio/commercetools-php-sdk/compare/v1.0.1...v1.1.0) (2016-05-27)
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.1';
17+
const VERSION = '1.1.1';
1818

1919
/**
2020
* @var AdapterInterface

src/Model/Common/LocalizedEnumCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LocalizedEnumCollection extends Collection
2121

2222
protected function indexRow($offset, $row)
2323
{
24-
if ($row instanceof Enum) {
24+
if ($row instanceof LocalizedEnum) {
2525
$key = $row->getKey();
2626
} else {
2727
$key = $row[static::KEY];

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.1.0",
3+
"version": "1.1.1",
44
"description": "commercetools PHP SDK changelog generator package description",
55
"homepage": "https://github.com/sphereio/commercetools-php-sdk",
66
"bugs": "https://github.com/sphereio/commercetools-php-sdk/issues",

0 commit comments

Comments
 (0)