diff --git a/.swift-version b/.swift-version deleted file mode 100644 index 819e07a..0000000 --- a/.swift-version +++ /dev/null @@ -1 +0,0 @@ -5.0 diff --git a/.travis.yml b/.travis.yml index 89e4dfb..fdea264 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: objective-c -osx_image: xcode11 +osx_image: xcode12 branches: only: - master env: - - DESTINATION="OS=13.0,name=iPhone 11" SCHEME="XLActionController" SDK=iphonesimulator + - DESTINATION="platform=iOS Simulator,OS=14.0,name=iPhone 11" SCHEME="XLActionController" SDK=iphonesimulator script: - set -o pipefail - xcodebuild -version diff --git a/CHANGELOG.md b/CHANGELOG.md index 92b7d14..a58fdc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +### [5.1.0](https://github.com/xmartlabs/XLActionController/releases/tag/5.1.0) + +* Added the ability to adjust Cancel View's Title font and size. (#145) +* Support for SPM (#144, #146) + ### [5.0.2](https://github.com/xmartlabs/XLActionController/releases/tag/5.0.2) * Fix incorrect top inset and content offset (#126) diff --git a/README.md b/README.md index 810e83c..92f6235 100644 --- a/README.md +++ b/README.md @@ -442,7 +442,7 @@ dependency manager for Cocoa. Specify XLActionController into your project's Carthage: ``` -github "xmartlabs/XLActionController" ~> 5.0.2 +github "xmartlabs/XLActionController" ~> 5.1.0 ``` ### Manually as Embedded Framework diff --git a/XLActionController.podspec b/XLActionController.podspec index 8b5b8d8..8ab638c 100644 --- a/XLActionController.podspec +++ b/XLActionController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'XLActionController' - spec.version = '5.0.2' + spec.version = '5.1.0' spec.license = 'MIT' spec.summary = 'Fully customizable and extensible action sheet controller written in Swift' spec.homepage = 'https://github.com/xmartlabs/XLActionController' diff --git a/XLActionController.xcodeproj/project.pbxproj b/XLActionController.xcodeproj/project.pbxproj index 6bf0f11..0836bbc 100644 --- a/XLActionController.xcodeproj/project.pbxproj +++ b/XLActionController.xcodeproj/project.pbxproj @@ -68,10 +68,10 @@ 28E1915D1BFA618E00066B1C = { isa = PBXGroup; children = ( - C74DED9925D2B82A009A9DFA /* Package.swift */, EA2CFE281FBD2FBB00CAE00E /* Resource */, 28E191691BFA618E00066B1C /* Source */, 28E191751BFA618F00066B1C /* Tests */, + C74DEDDE25D319F7009A9DFA /* Package */, 28E191681BFA618E00066B1C /* Products */, ); sourceTree = ""; @@ -109,6 +109,14 @@ path = Tests; sourceTree = ""; }; + C74DEDDE25D319F7009A9DFA /* Package */ = { + isa = PBXGroup; + children = ( + C74DED9925D2B82A009A9DFA /* Package.swift */, + ); + name = Package; + sourceTree = ""; + }; EA2CFE281FBD2FBB00CAE00E /* Resource */ = { isa = PBXGroup; children = ( @@ -385,7 +393,7 @@ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MARKETING_VERSION = 5.0.2; + MARKETING_VERSION = 5.1.0; PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLActionController; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; @@ -408,7 +416,7 @@ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.3; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MARKETING_VERSION = 5.0.2; + MARKETING_VERSION = 5.1.0; PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.XLActionController; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES;