Skip to content

Commit 0c6b517

Browse files
author
Marcin Iwanicki
committed
Bumping version to 0.1.2.
1 parent 7c6b655 commit 0c6b517

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,14 @@
33
## 0.1.0
44

55
Initial release.
6+
7+
8+
## 0.1.1
9+
10+
- Fixed init method to initialise locationString property properly.
11+
- Fixed missing summary parsing. (thanks @DmitryPR)
12+
13+
14+
## 0.1.2
15+
16+
- Fixed copy-paste error of kCGGoogleDirectionsResponseAttributeBounds. (thanks @djmadcat)

OCGoogleDirectionsAPI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "OCGoogleDirectionsAPI"
3-
s.version = "0.1.1"
3+
s.version = "0.1.2"
44
s.summary = "A lightweight wrapper for The Google Directions API."
55
s.homepage = "https://github.com/marciniwanicki/OCGoogleDirectionsAPI"
66
s.license = 'MIT'
77
s.author = { "Marcin Iwanicki" => "[email protected]" }
8-
s.source = { :git => "https://github.com/marciniwanicki/OCGoogleDirectionsAPI.git", :tag => "0.1.1" }
8+
s.source = { :git => "https://github.com/marciniwanicki/OCGoogleDirectionsAPI.git", :tag => "0.1.2" }
99

1010
s.ios.deployment_target = '7.0'
1111
s.requires_arc = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ As Google wrote:
77
<i>"The Google Directions API is a service that calculates directions between locations using an HTTP request. You can search for directions for several modes of transportation, include transit, driving, walking or cycling. Directions may specify origins, destinations and waypoints either as text strings (e.g. "Chicago, IL" or "Darwin, NT, Australia") or as latitude/longitude coordinates. The Directions API can return multi-part directions using a series of waypoints."</i>
88

99

10-
# 0.1.1
10+
# 0.1.2
1111

1212
The OCGoogleDirectionsAPI library allows your iOS apps to deal with this powerful service easily. <b>IMPORTANT:</b> It uses `NSURLSession` only available in iOS 7.0+. It is <b>not compatible with iOS 6.x and lower</b>.
1313

0 commit comments

Comments
 (0)