diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8ae88a..ce64e881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log -## 0.1.0 +## v0.1.1 + +#### Fixed + +* Change the deployment target from iOS 8.4 to 8.0 + +## v0.1.0 #### Added @@ -9,4 +15,4 @@ * `Section` * `NavigationRow` with `Subtitle` * `SwitchRow` - * `TapActionRow` \ No newline at end of file + * `TapActionRow` diff --git a/Example/Example.xcodeproj/project.pbxproj b/Example/Example.xcodeproj/project.pbxproj index 6a9bc91a..01dfa5db 100644 --- a/Example/Example.xcodeproj/project.pbxproj +++ b/Example/Example.xcodeproj/project.pbxproj @@ -268,7 +268,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.4; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -306,7 +306,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.4; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; diff --git a/Example/Example/Info.plist b/Example/Example/Info.plist index 400174a0..9fe39432 100644 --- a/Example/Example/Info.plist +++ b/Example/Example/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0 + 0.1.1 CFBundleSignature ???? CFBundleVersion - 1 + 101 LSRequiresIPhoneOS UILaunchStoryboardName diff --git a/QuickTableViewController.podspec b/QuickTableViewController.podspec index 71d059c9..be6719d0 100644 --- a/QuickTableViewController.podspec +++ b/QuickTableViewController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "QuickTableViewController" - s.version = "0.1.0" + s.version = "0.1.1" s.summary = "A simple way to create a table view for settings." s.screenshots = "https://bcylin.github.io/QuickTableViewController/img/screenshot.png" diff --git a/QuickTableViewController.xcodeproj/project.pbxproj b/QuickTableViewController.xcodeproj/project.pbxproj index c922c49d..a737dabe 100644 --- a/QuickTableViewController.xcodeproj/project.pbxproj +++ b/QuickTableViewController.xcodeproj/project.pbxproj @@ -280,7 +280,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.4; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -322,7 +322,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.4; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; diff --git a/README.md b/README.md index 31bc00ca..e35b2513 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,13 @@ class ViewController: QuickTableViewController { super.viewDidLoad() tableContents = [ - Section(title: "Section title", rows: [ - NavigationRow(title: "Cell title", subtitle: .RightAligned("detail text")) - ], footer: "Section footer"), - - Section(title: nil, rows: [ - NavigationRow(title: "Navigation", subtitle: .None, action: aNavigation), - SwitchRow(title: "Switch cell", switchValue: true, action: anOptionalAction), - TapActionRow(title: "Tap action", action: anAction), + Section(title: "Switch", rows: [ + SwitchRow(title: "Setting 1", switchValue: true, action: { _ in }), + SwitchRow(title: "Setting 2", switchValue: false, action: { _ in }), + ]), + + Section(title: "Tap Action", rows: [ + TapActionRow(title: "Tap action", action: showAlert) ]) ] } @@ -82,8 +81,7 @@ TapActionRow(title: "Tap action", action: { (sender: Row) in }) ## Requirements -* iOS 8.0+ -* Xcode 6.4 +* `v0.1.1` requires iOS 8.0+ with Xcode 6.4. * Currently QuickTableViewController is written in Swift 1.2, soon will be updated to Swift 2.0. ## Installation diff --git a/Source/Info.plist b/Source/Info.plist index 4092453f..d26c6b2f 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.1.0 + 0.1.1 CFBundleSignature ???? CFBundleVersion