Skip to content

Commit 8defea0

Browse files
Release version 8.1.0 (#639)
1 parent 73ffb21 commit 8defea0

File tree

7 files changed

+22
-11
lines changed

7 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to XLPagerTabStrip will be documented in this file.
33

4+
### [8.1.0](https://github.com/xmartlabs/XLPagerTabStrip/releases/tag/8.1.0)
5+
6+
* Xcode 10 and Swift 4.2 support.
7+
* Minor updates and fixes
8+
49
### [8.0.1](https://github.com/xmartlabs/XLPagerTabStrip/releases/tag/8.0.1)
510

611
* Bug fixes and stability improvements.

Example.xcodeproj/project.pbxproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@
313313
isa = PBXProject;
314314
attributes = {
315315
LastSwiftUpdateCheck = 0720;
316-
LastUpgradeCheck = 0900;
316+
LastUpgradeCheck = 1000;
317317
TargetAttributes = {
318318
28F828CB1C4B714D00330CF4 = {
319319
CreatedOnToolsVersion = 7.2;
@@ -463,12 +463,14 @@
463463
CLANG_WARN_BOOL_CONVERSION = YES;
464464
CLANG_WARN_COMMA = YES;
465465
CLANG_WARN_CONSTANT_CONVERSION = YES;
466+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
466467
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
467468
CLANG_WARN_EMPTY_BODY = YES;
468469
CLANG_WARN_ENUM_CONVERSION = YES;
469470
CLANG_WARN_INFINITE_RECURSION = YES;
470471
CLANG_WARN_INT_CONVERSION = YES;
471472
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
473+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
472474
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
473475
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
474476
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
@@ -515,12 +517,14 @@
515517
CLANG_WARN_BOOL_CONVERSION = YES;
516518
CLANG_WARN_COMMA = YES;
517519
CLANG_WARN_CONSTANT_CONVERSION = YES;
520+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
518521
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
519522
CLANG_WARN_EMPTY_BODY = YES;
520523
CLANG_WARN_ENUM_CONVERSION = YES;
521524
CLANG_WARN_INFINITE_RECURSION = YES;
522525
CLANG_WARN_INT_CONVERSION = YES;
523526
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
527+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
524528
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
525529
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
526530
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<p align="left">
44
<a href="https://travis-ci.org/xmartlabs/XLPagerTabStrip"><img src="https://travis-ci.org/xmartlabs/XLPagerTabStrip.svg?branch=master" alt="Build status" /></a>
55
<img src="https://img.shields.io/badge/platform-iOS-blue.svg?style=flat" alt="Platform iOS" />
6-
<a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/swift4-compatible-4BC51D.svg?style=flat" alt="Swift 3 compatible" /></a>
6+
<a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/swift4-compatible-4BC51D.svg?style=flat" alt="Swift 4 compatible" /></a>
77
<a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage compatible" /></a>
88
<a href="https://cocoapods.org/pods/XLPagerTabStrip"><img src="https://img.shields.io/cocoapods/v/XLPagerTabStrip.svg" alt="CocoaPods compatible" /></a>
99
<a href="https://raw.githubusercontent.com/xmartlabs/XLPagerTabStrip/master/LICENSE"><img src="http://img.shields.io/badge/license-MIT-blue.svg?style=flat" alt="License: MIT" />
@@ -290,7 +290,7 @@ settings.style.segmentedControlColor: UIColor?
290290
## Requirements
291291

292292
* iOS 8.0+
293-
* Xcode 9.3+
293+
* Xcode 10+
294294

295295
## Examples
296296

@@ -305,7 +305,7 @@ Follow these 3 steps to run Example project: Clone XLPagerTabStrip repository, o
305305
To install XLPagerTabStrip, simply add the following line to your Podfile:
306306

307307
```ruby
308-
pod 'XLPagerTabStrip', '~> 8.0'
308+
pod 'XLPagerTabStrip', '~> 8.1'
309309
```
310310

311311
### Carthage
@@ -315,7 +315,7 @@ pod 'XLPagerTabStrip', '~> 8.0'
315315
To install XLPagerTabStrip, simply add the following line to your Cartfile:
316316

317317
```ogdl
318-
github "xmartlabs/XLPagerTabStrip" ~> 8.0
318+
github "xmartlabs/XLPagerTabStrip" ~> 8.1
319319
```
320320

321321
## FAQ

XLPagerTabStrip.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "XLPagerTabStrip"
3-
s.version = "8.0.1"
3+
s.version = "8.1.0"
44
s.summary = "Android PagerTabStrip for iOS and much more."
55
s.homepage = "https://github.com/xmartlabs/XLPagerTabStrip"
66
s.license = { type: 'MIT', file: 'LICENSE' }

XLPagerTabStrip.xcodeproj/project.pbxproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
isa = PBXProject;
229229
attributes = {
230230
LastSwiftUpdateCheck = 0720;
231-
LastUpgradeCheck = 0900;
231+
LastUpgradeCheck = 1000;
232232
TargetAttributes = {
233233
28F8287C1C494B2C00330CF4 = {
234234
CreatedOnToolsVersion = 7.2;
@@ -346,12 +346,14 @@
346346
CLANG_WARN_BOOL_CONVERSION = YES;
347347
CLANG_WARN_COMMA = YES;
348348
CLANG_WARN_CONSTANT_CONVERSION = YES;
349+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
349350
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
350351
CLANG_WARN_EMPTY_BODY = YES;
351352
CLANG_WARN_ENUM_CONVERSION = YES;
352353
CLANG_WARN_INFINITE_RECURSION = YES;
353354
CLANG_WARN_INT_CONVERSION = YES;
354355
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
356+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
355357
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
356358
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
357359
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
@@ -403,12 +405,14 @@
403405
CLANG_WARN_BOOL_CONVERSION = YES;
404406
CLANG_WARN_COMMA = YES;
405407
CLANG_WARN_CONSTANT_CONVERSION = YES;
408+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
406409
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
407410
CLANG_WARN_EMPTY_BODY = YES;
408411
CLANG_WARN_ENUM_CONVERSION = YES;
409412
CLANG_WARN_INFINITE_RECURSION = YES;
410413
CLANG_WARN_INT_CONVERSION = YES;
411414
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
415+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
412416
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
413417
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
414418
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;

XLPagerTabStrip.xcodeproj/xcshareddata/xcschemes/XLPagerTabStrip.xcscheme

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0900"
3+
LastUpgradeVersion = "1000"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,7 +26,6 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29-
language = ""
3029
shouldUseLaunchSchemeArgsEnv = "YES">
3130
<Testables>
3231
<TestableReference
@@ -56,7 +55,6 @@
5655
buildConfiguration = "Debug"
5756
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
5857
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59-
language = ""
6058
launchStyle = "0"
6159
useCustomWorkingDirectory = "NO"
6260
ignoresPersistentStateOnLaunch = "NO"

XLPagerTabStrip/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>6.0.0</string>
18+
<string>8.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)