Skip to content

Commit

Permalink
2.0.1, which now explicitly requires iOS 8.0/macOS 10.10 or higher
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldev committed Nov 8, 2016
1 parent 932c6c3 commit a7a172f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions JLRoutes.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Pod::Spec.new do |s|
s.name = "JLRoutes"
s.version = "2.0"
s.version = "2.0.1"
s.summary = "URL routing library for iOS with a simple block-based API."
s.homepage = "https://github.com/joeldev/JLRoutes"

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

s.author = { "Joel Levin" => "[email protected]" }
s.source = { :git => "https://github.com/joeldev/JLRoutes.git", :tag => "2.0" }
s.source = { :git => "https://github.com/joeldev/JLRoutes.git", :tag => "2.0.1" }

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

s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
end
6 changes: 3 additions & 3 deletions JLRoutes.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
isa = PBXProject;
attributes = {
LastTestingUpgradeCheck = 0510;
LastUpgradeCheck = 0800;
LastUpgradeCheck = 0810;
ORGANIZATIONNAME = "Afterwork Studios";
TargetAttributes = {
5CB4EB481B45BF5B0058E91A = {
Expand Down Expand Up @@ -491,7 +491,7 @@
DSTROOT = /tmp/JLRoutes.dst;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
PUBLIC_HEADERS_FOLDER_PATH = "include/${PRODUCT_NAME}";
Expand All @@ -505,7 +505,7 @@
DSTROOT = /tmp/JLRoutes.dst;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
PUBLIC_HEADERS_FOLDER_PATH = "include/${PRODUCT_NAME}";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0800"
LastUpgradeVersion = "0810"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0800"
LastUpgradeVersion = "0810"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ JLRoutes is a URL routing library with a simple block-based API. It is designed
JLRoutes is available for installation using [CocoaPods](https://cocoapods.org/pods/JLRoutes) or Carthage (add `github "joeldev/JLRoutes"` to your `Cartfile`).

### Requirements ###
* iOS 7.0+ or OS X 10.9+
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).

### Simple Example ###
```objc
Expand Down

2 comments on commit a7a172f

@aelam
Copy link

@aelam aelam commented on a7a172f Nov 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do 2.x require iOS 8.0+. Using any iOS8.0+ APIs?

@joeldev
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aelam Yes, more information is available on the releases page.

Please sign in to comment.