Skip to content

Commit

Permalink
Updated changelog for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-mladenovic committed Aug 18, 2017
1 parent d715b17 commit 3f6be4a
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 31 deletions.
14 changes: 14 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.7.x` Releases - [0.7.0](#070)
- `0.6.x` Releases - [0.6.0](#060) | [0.6.1](#061)
- `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.5.5](#055) | [0.5.6](#056) | [0.5.7](#057) | [0.5.8](#058) | [0.5.9](#059)
- `0.4.x` Releases - [0.4.0](#040) | [0.4.1](#041) | [0.4.2](#042)
Expand All @@ -12,6 +13,19 @@ All changes to this project will be documented in this file.

---

## [0.7.0](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.7.0)
Released on 2017-08-18.

#### Added
- `key` to the `Customer` endpoint.
- `key` to the `TaxCategory` model.

#### Updated
- Replaced `[String: Any]` instances with `JsonValue` enum.

#### Removed
- ObjectMapper dependency.

## [0.6.1](https://github.com/commercetools/commercetools-ios-sdk/releases/tag/0.6.1)
Released on 2017-08-04.

Expand Down
6 changes: 2 additions & 4 deletions Commercetools.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
Pod::Spec.new do |s|

s.name = "Commercetools"
s.version = "0.6.1"
s.version = "0.7.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" }
s.author = { "Commercetools GmbH" => "[email protected]" }
s.source = { :git => "https://github.com/commercetools/commercetools-ios-sdk.git", :tag => s.version.to_s }
s.source_files = 'Source/*.swift'

s.ios.deployment_target = '9.3'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.2'

s.dependency 'ObjectMapper', '~> 2.2'

end
52 changes: 27 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,34 @@

<img src="https://raw.githubusercontent.com/commercetools/press-kit/master/PNG/72DPI/CT%20logo%20horizontal%20RGB%2072dpi.png" height="80" />

[![][travis img]][travis]
[![][cocoapods img]][cocoapods]
[![][platforms img]][platforms]
[![][license img]][license]
<p>
<a href="https://travis-ci.org/commercetools/commercetools-ios-sdk" target="_blank">
<img src="https://travis-ci.org/commercetools/commercetools-ios-sdk.svg?branch=master">
</a>
<a href="http://cocoadocs.org/docsets/Commercetools" target="_blank">
<img src="https://img.shields.io/cocoapods/v/Commercetools.svg">
</a>
<a href="https://developer.apple.com/swift/" target="_blank">
<img src="https://img.shields.io/badge/Swift-4.0-orange.svg?style=flat" alt="Swift 4.0">
</a>
<a href="https://developer.apple.com/swift/" target="_blank">
<img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20macOS%20%7C%20watchOS%20%7C%20tvOS%20%7C%20Linux-4E4E4E.svg?colorA=EF5138" alt="Platforms iOS | macOS | watchOS | tvOS | Linux">
</a>
<a href="https://github.com/apple/swift-package-manager" target="_blank">
<img src="https://img.shields.io/badge/SPM-compatible-brightgreen.svg?style=flat&colorB=64A5DE" alt="SPM compatible">
</a>
<a href="LICENSE" target="_blank">
<img src="https://img.shields.io/badge/License-Apache%202-blue.svg">
</a>
</p>

## Installation

### Requirements

- iOS 9.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 8.1+
- Swift 3.0+
- iOS 10.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 9.0+
- Swift 4.0+

### CocoaPods

Expand All @@ -23,16 +39,16 @@
$ gem install cocoapods
```

> CocoaPods 1.1.0+ is required to build CommercetoolsSDK 0.3+.
> CocoaPods 1.2.1+ is required to build CommercetoolsSDK 0.7+.
To integrate CommercetoolsSDK into your Xcode project using CocoaPods, specify it in your `Podfile`:

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
platform :ios, '10.0'
use_frameworks!

pod 'Commercetools', '~> 0.5'
pod 'Commercetools', '~> 0.7'
```

Then, run the following command:
Expand Down Expand Up @@ -498,18 +514,4 @@ Setting up helper endpoints in test classes is also very easy. You can declare a
private class Foobar: QueryEndpoint, ByIdEndpoint, CreateEndpoint, UpdateEndpoint, DeleteEndpoint {
static let path = "foobar"
}
```

[](definitions for the top badges)

[travis]:https://travis-ci.org/commercetools/commercetools-ios-sdk
[travis img]:https://travis-ci.org/commercetools/commercetools-ios-sdk.svg?branch=master

[cocoapods]:http://cocoadocs.org/docsets/Commercetools
[cocoapods img]:https://img.shields.io/cocoapods/v/Commercetools.svg

[platforms]:http://cocoadocs.org/docsets/Commercetools
[platforms img]:https://img.shields.io/cocoapods/p/Commercetools.svg?style=flat

[license]:LICENSE
[license img]:https://img.shields.io/badge/License-Apache%202-blue.svg
```
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.6.1</string>
<string>0.7.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.6.1</string>
<string>0.7.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 3f6be4a

Please sign in to comment.