diff --git a/Directions Example/Info.plist b/Directions Example/Info.plist index 4105b05fe..5b66d7d26 100644 --- a/Directions Example/Info.plist +++ b/Directions Example/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.5.0 + 0.6.0 CFBundleSignature ???? CFBundleVersion - 1 + 2 LSRequiresIPhoneOS UIRequiredDeviceCapabilities diff --git a/MapboxDirections.swift.podspec b/MapboxDirections.swift.podspec index 6cf34b4b3..70e853e9e 100644 --- a/MapboxDirections.swift.podspec +++ b/MapboxDirections.swift.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = "MapboxDirections.swift" - s.version = "0.5.0" + s.version = "0.6.0" s.summary = "Mapbox Directions API wrapper for Swift and Objective-C." s.description = <<-DESC diff --git a/MapboxDirections.xcodeproj/project.pbxproj b/MapboxDirections.xcodeproj/project.pbxproj index 738bd0034..361c74f91 100644 --- a/MapboxDirections.xcodeproj/project.pbxproj +++ b/MapboxDirections.xcodeproj/project.pbxproj @@ -1159,11 +1159,11 @@ CLANG_ANALYZER_NONNULL = YES; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_VERSION = A; INFOPLIST_FILE = MapboxDirections/Info.plist; @@ -1185,10 +1185,10 @@ CLANG_ANALYZER_NONNULL = YES; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_VERSION = A; INFOPLIST_FILE = MapboxDirections/Info.plist; @@ -1239,11 +1239,11 @@ baseConfigurationReference = 0FD4719FAB56964485A4E090 /* Pods-MapboxDirectionsTV.debug.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = MapboxDirections/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -1264,10 +1264,10 @@ baseConfigurationReference = 844B8A6B18AB25E1ED023074 /* Pods-MapboxDirectionsTV.release.xcconfig */; buildSettings = { CLANG_ANALYZER_NONNULL = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = MapboxDirections/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -1318,11 +1318,11 @@ buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ANALYZER_NONNULL = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = MapboxDirections/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -1344,10 +1344,10 @@ buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ANALYZER_NONNULL = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; + DYLIB_CURRENT_VERSION = 2; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = MapboxDirections/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; diff --git a/MapboxDirections/Info.plist b/MapboxDirections/Info.plist index 7afd82acf..20539643e 100644 --- a/MapboxDirections/Info.plist +++ b/MapboxDirections/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.5.0 + 0.6.0 CFBundleSignature ???? CFBundleVersion - $(CURRENT_PROJECT_VERSION) + 2 NSPrincipalClass diff --git a/MapboxDirectionsTests/Info.plist b/MapboxDirectionsTests/Info.plist index 96201fb94..0c242f5bb 100644 --- a/MapboxDirectionsTests/Info.plist +++ b/MapboxDirectionsTests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 0.5.0 + 0.6.0 CFBundleSignature ???? CFBundleVersion - 1 + 2 diff --git a/README.md b/README.md index 417d9b683..be9985f0c 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ MapboxDirections.swift pairs well with [MapboxGeocoder.swift](https://github.com Specify the following dependency in your [CocoaPods](http://cocoapods.org/) Podfile: ```podspec -pod 'MapboxDirections.swift', :git => 'https://github.com/mapbox/MapboxDirections.swift.git', :branch => 'master' +pod 'MapboxDirections.swift', :git => 'https://github.com/mapbox/MapboxDirections.swift.git', :tag => 'v0.6.0' ``` Or in your [Carthage](https://github.com/Carthage/Carthage) Cartfile: ```cartfile -github "Mapbox/MapboxDirections.swift" ~> 0.5.0 +github "Mapbox/MapboxDirections.swift" ~> 0.6.0 ``` Then `import MapboxDirections` or `@import MapboxDirections;`.