Skip to content

Commit

Permalink
Updated changelog for 0.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-mladenovic committed Aug 29, 2019
1 parent 81a8414 commit 318781c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
All changes to this project will be documented in this file.

#### 0.x Releases
- `0.11.x` Releases - [0.11.0](#0110)
- `0.10.x` Releases - [0.10.0](#0100)
- `0.9.x` Releases - [0.9.0](#090)
- `0.8.x` Releases - [0.8.0](#080)
Expand All @@ -16,6 +17,12 @@ All changes to this project will be documented in this file.

---

## [0.11.0](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.11.0)
Released on 2019-08-29.

#### Added
- Store support for customers.

## [0.10.0](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.10.0)
Released on 2019-07-05.

Expand Down
2 changes: 1 addition & 1 deletion Commercetools.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Commercetools"
s.version = "0.10.0"
s.version = "0.11.0"
s.summary = "The e-commerce Swift SDK from commercetools"
s.homepage = "https://github.com/commercetools/commercetools-ios-sdk"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'Commercetools', '~> 0.9'
pod 'Commercetools', '~> 0.11'
```

Then, run the following command:
Expand Down
2 changes: 1 addition & 1 deletion Source/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.10.0</string>
<string>0.11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.10.0</string>
<string>0.11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 4 additions & 4 deletions Tests/MachineLearningEndpoints/SimilarProductsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SimilarProductsTests: XCTestCase {
}

func testStatus() {
let similarProductsExpectation = expectation(description: "similar products status expectation")
weak var similarProductsExpectation = expectation(description: "similar products status expectation")
var timer: Timer!

let request = SimilarProductSearchRequest(limit: 3, similarityMeasures: SimilarityMeasures(name: 1))
Expand All @@ -49,7 +49,7 @@ class SimilarProductsTests: XCTestCase {
XCTAssertNotNil(result.model)
if result.model!.state == .success {
XCTAssertEqual(result.model!.result!.results.count, 3)
similarProductsExpectation.fulfill()
similarProductsExpectation?.fulfill()
}
}
}
Expand All @@ -62,7 +62,7 @@ class SimilarProductsTests: XCTestCase {
}

func testProductSelection() {
let similarProductsExpectation = expectation(description: "similar products selection expectation")
weak var similarProductsExpectation = expectation(description: "similar products selection expectation")
var timer: Timer!

ProductProjection.query(limit: 2) { result in
Expand All @@ -83,7 +83,7 @@ class SimilarProductsTests: XCTestCase {
XCTAssertNotNil(result.model)
if result.model!.state == .success {
XCTAssertEqual(result.model!.result!.results[0].products.filter({ productIds.contains($0.product.id) }).count, 2)
similarProductsExpectation.fulfill()
similarProductsExpectation?.fulfill()
}
}
}
Expand Down

0 comments on commit 318781c

Please sign in to comment.