diff --git a/OSRMTextInstructions.podspec b/OSRMTextInstructions.podspec index 1811a35..681b0f0 100644 --- a/OSRMTextInstructions.podspec +++ b/OSRMTextInstructions.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = "OSRMTextInstructions" - s.version = "0.5.0" + s.version = "0.6.0" s.summary = "Transforms OSRM route reponses into human-readable instructions." s.description = <<-DESC diff --git a/OSRMTextInstructions.xcodeproj/project.pbxproj b/OSRMTextInstructions.xcodeproj/project.pbxproj index e7e2a88..73dc78b 100644 --- a/OSRMTextInstructions.xcodeproj/project.pbxproj +++ b/OSRMTextInstructions.xcodeproj/project.pbxproj @@ -782,7 +782,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -839,7 +839,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -873,7 +873,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -898,7 +898,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -923,7 +923,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -951,7 +951,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1017,7 +1017,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1044,7 +1044,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1107,7 +1107,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", @@ -1136,7 +1136,7 @@ DEFINES_MODULE = YES; DEVELOPMENT_TEAM = GJZR2MEM28; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 10; + DYLIB_CURRENT_VERSION = 11; DYLIB_INSTALL_NAME_BASE = "@rpath"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", diff --git a/OSRMTextInstructions/Info.plist b/OSRMTextInstructions/Info.plist index ff09002..4bf2fd3 100644 --- a/OSRMTextInstructions/Info.plist +++ b/OSRMTextInstructions/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.5.0 + 0.6.0 CFBundleVersion - 10 + 11 NSPrincipalClass diff --git a/OSRMTextInstructionsTests/Info.plist b/OSRMTextInstructionsTests/Info.plist index b5898ea..1bd9323 100644 --- a/OSRMTextInstructionsTests/Info.plist +++ b/OSRMTextInstructionsTests/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 0.5.0 + 0.6.0 CFBundleVersion - 10 + 11 diff --git a/README.md b/README.md index 9848b78..36d091e 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ OSRM Text Instructions for Swift is based on the canonical [osrm-text-instructio Specify the following dependency in your [Carthage](https://github.com/Carthage/Carthage/) Cartfile: ```cartfile -github "Project-OSRM/osrm-text-instructions.swift" ~> 0.5.0 +github "Project-OSRM/osrm-text-instructions.swift" ~> 0.6.0 ``` Or in your [CocoaPods](http://cocoapods.org/) Podfile: ```podspec -pod 'OSRMTextInstructions', '~> 0.5.0' +pod 'OSRMTextInstructions', '~> 0.6.0' ``` Then `import OSRMTextInstructions` or `@import OSRMTextInstructions;`.