Skip to content

Commit 7f60c80

Browse files
committed
V0.11.0
1 parent c41151c commit 7f60c80

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

APIModel.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "APIModel"
33
s.module_name = "ApiModel"
4-
s.version = "0.10.2"
4+
s.version = "0.11.0"
55
s.summary = "Easy API integrations using Realm and Swift"
66

77
s.description = <<-DESC

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.11.0
4+
5+
Dependency upgrade:
6+
7+
- This release bumps Realm to version `0.98.4`, which should not break your app installs.
8+
39
## 0.10.2
410

511
- Fixes #22. Code for `rootNamespace` had been broken since a bad rebase. Included tests to verify fix.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This project is very much inspired by [@idlefingers'](https://github.com/idlefin
99
Add `APIModel` to your `Podfile`, and run `pod install`:
1010

1111
```ruby
12-
pod 'APIModel', '~> 0.10.1'
12+
pod 'APIModel', '~> 0.11.0'
1313
```
1414

1515
The key part is to implement the `ApiModel` protocol.
@@ -113,7 +113,7 @@ If you would like ApiModel to use a NSURLSessionConfiguration, you can set it li
113113
let configuration = NSURLSessionConfiguration.defaultSessionConfiguration()
114114
configuration.timeoutIntervalForRequest = 15 // shorten default timeout
115115
configuration.timeoutIntervalForResource = 15 // shorten default timeout
116-
116+
117117
ApiSingleton.setInstance(ApiManager(config: ApiConfig(host: "http://feed.myapi.com", urlSessionConfig:configuration)))
118118

119119
// or

0 commit comments

Comments
 (0)