Skip to content

Commit

Permalink
Updated changelog for 0.5.4 release, updated readme docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-mladenovic committed Feb 20, 2017
1 parent 6c32160 commit 9d5f768
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All changes to this project will be documented in this file.

#### 0.x Releases
- `0.5.x` Releases - [0.5.0](#050) | [0.5.1](#051) | [0.5.2](#052) | [0.5.3](#053)
- `0.5.x` Releases - [0.5.0](#050) | [0.5.1](#051) | [0.5.2](#052) | [0.5.3](#053) | [0.5.4](#054)
- `0.4.x` Releases - [0.4.0](#040) | [0.4.1](#041) | [0.4.2](#042)
- `0.3.x` Releases - [0.3.0](#030)
- `0.2.x` Releases - [0.2.0](#020)
Expand All @@ -11,6 +11,15 @@ All changes to this project will be documented in this file.

---

## [0.5.4](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.5.4)
Released on 2017-02-20.

#### Added
- `taxRoundingMode` field to `Cart` and `Order` endpoints.
- Support for multiple filters for product projection search.
- `deleteDaysAfterLastModification` to the `Cart` endpoint.
- Fixes for Swift Package Manager.

## [0.5.3](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.5.3)
Released on 2017-01-23.

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.5.3"
s.version = "0.5.4"
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ Order endpoint provides the ability to create an order from an existing `Cart`,
Most common way for your iOS app to retrieve the product data is by consuming the product projection endpoint. The following actions are currently supported:
- Search for product projections
```swift
ProductProjection.search(sort: ["name.en asc"], limit: 10, lang: NSLocale(localeIdentifier: "en"), text: "Michael Kors", result: { result in
ProductProjection.search(sort: ["name.en asc"], limit: 10, lang: Locale(identifier: "en"), text: "Michael Kors", result: { result in
if let response = result.model, let total = response.total,
let results = response.results, result.isSuccess {
// results contains an array of product projection objects
Expand All @@ -376,7 +376,7 @@ ProductProjection.search(sort: ["name.en asc"], limit: 10, lang: NSLocale(locale
```
- Product projection keyword suggestions
```swift
ProductProjection.suggest(lang: NSLocale(localeIdentifier: "en"), searchKeywords: "michael", result: { result in
ProductProjection.suggest(lang: Locale(identifier: "en"), searchKeywords: "michael", result: { result in
if let response = result.json, let keywords = response["searchKeywords.en"] as? [[String: AnyObject]],
let firstKeyword = keywords.first?["text"] as? String, result.isSuccess {
// keywords contains an array of suggestions in dictionary representation
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.5.2</string>
<string>0.5.4</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.5.2</string>
<string>0.5.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 9d5f768

Please sign in to comment.