Skip to content

Commit a7a172f

Browse files
committed
2.0.1, which now explicitly requires iOS 8.0/macOS 10.10 or higher
1 parent 932c6c3 commit a7a172f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

JLRoutes.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Pod::Spec.new do |s|
22
s.name = "JLRoutes"
3-
s.version = "2.0"
3+
s.version = "2.0.1"
44
s.summary = "URL routing library for iOS with a simple block-based API."
55
s.homepage = "https://github.com/joeldev/JLRoutes"
66

77
s.license = "BSD 3-Clause \"New\" License"
88

99
s.author = { "Joel Levin" => "joel@joeldev.com" }
10-
s.source = { :git => "https://github.com/joeldev/JLRoutes.git", :tag => "2.0" }
10+
s.source = { :git => "https://github.com/joeldev/JLRoutes.git", :tag => "2.0.1" }
1111

1212
s.source_files = 'JLRoutes', 'JLRoutes/*.{h,m}', 'JLRoutes/Classes/*.{h,m}'
1313
s.framework = 'Foundation'
1414
s.requires_arc = true
1515

16-
s.ios.deployment_target = '7.0'
17-
s.osx.deployment_target = '10.9'
16+
s.ios.deployment_target = '8.0'
17+
s.osx.deployment_target = '10.10'
1818
s.tvos.deployment_target = '9.0'
1919
end

JLRoutes.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
isa = PBXProject;
245245
attributes = {
246246
LastTestingUpgradeCheck = 0510;
247-
LastUpgradeCheck = 0800;
247+
LastUpgradeCheck = 0810;
248248
ORGANIZATIONNAME = "Afterwork Studios";
249249
TargetAttributes = {
250250
5CB4EB481B45BF5B0058E91A = {
@@ -491,7 +491,7 @@
491491
DSTROOT = /tmp/JLRoutes.dst;
492492
GCC_PRECOMPILE_PREFIX_HEADER = NO;
493493
GCC_PREFIX_HEADER = "";
494-
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
494+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
495495
OTHER_LDFLAGS = "-ObjC";
496496
PRODUCT_NAME = "$(TARGET_NAME)";
497497
PUBLIC_HEADERS_FOLDER_PATH = "include/${PRODUCT_NAME}";
@@ -505,7 +505,7 @@
505505
DSTROOT = /tmp/JLRoutes.dst;
506506
GCC_PRECOMPILE_PREFIX_HEADER = NO;
507507
GCC_PREFIX_HEADER = "";
508-
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
508+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
509509
OTHER_LDFLAGS = "-ObjC";
510510
PRODUCT_NAME = "$(TARGET_NAME)";
511511
PUBLIC_HEADERS_FOLDER_PATH = "include/${PRODUCT_NAME}";

JLRoutes.xcodeproj/xcshareddata/xcschemes/JLRoutes-iOS.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0800"
3+
LastUpgradeVersion = "0810"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

JLRoutes.xcodeproj/xcshareddata/xcschemes/JLRoutes.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0800"
3+
LastUpgradeVersion = "0810"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ JLRoutes is a URL routing library with a simple block-based API. It is designed
1616
JLRoutes is available for installation using [CocoaPods](https://cocoapods.org/pods/JLRoutes) or Carthage (add `github "joeldev/JLRoutes"` to your `Cartfile`).
1717

1818
### Requirements ###
19-
* iOS 7.0+ or OS X 10.9+
19+
JLRoutes 2.x require iOS 8.0+ or macOS 10.10+. If you need to support iOS 7 or macOS 10.9, please use version 1.6.4 (which is the last 1.x release).
2020

2121
### Simple Example ###
2222
```objc

0 commit comments

Comments
 (0)