diff --git a/PasscodeKit.podspec b/PasscodeKit.podspec index ed5401a..c264737 100644 --- a/PasscodeKit.podspec +++ b/PasscodeKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'PasscodeKit' - s.version = '1.0.1' + s.version = '1.0.3' s.license = 'MIT' s.summary = 'A lightweight and easy-to-use Passcode Kit for iOS.' diff --git a/PasscodeKit/app.xcodeproj/project.pbxproj b/PasscodeKit/app.xcodeproj/project.pbxproj index 9858817..5380ab4 100644 --- a/PasscodeKit/app.xcodeproj/project.pbxproj +++ b/PasscodeKit/app.xcodeproj/project.pbxproj @@ -337,7 +337,7 @@ INFOPLIST_FILE = app/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 1.0.2; + MARKETING_VERSION = 1.0.3; PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.passcodekit; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -370,7 +370,7 @@ INFOPLIST_FILE = app/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited)"; - MARKETING_VERSION = 1.0.2; + MARKETING_VERSION = 1.0.3; PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.passcodekit; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/README.md b/README.md index bd5ad3d..09e4355 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,29 @@ PasscodeKit is a lightweight and easy-to-use, in-app Passcode implementation for ## INSTALLATION -### CocoaPods: +### CocoaPods -To use PasscodeKit with [CocoaPods](https://cocoapods.org), specify in your Podfile: +[CocoaPods](https://cocoapods.org) is a dependency manager for Swift and Objective-C Cocoa projects. + +To incorporate the **PasscodeKit** library into your Xcode project utilizing CocoaPods, please reference it within your `Podfile` as shown below: ```ruby pod 'PasscodeKit' ``` +### Swift Package Manager + +[Swift Package Manager](https://swift.org/package-manager) is a tool for managing the distribution of Swift code. + +Once you've configured your `Package.swift` manifest file, you may proceed to include **PasscodeKit** in the dependencies section of the same file. + +```swift +dependencies: [ .package(url: "https://github.com/relatedcode/PasscodeKit.git", from: "1.0.3") ] +``` + ### Manually -If you prefer not to use any of the dependency managers, you can integrate `PasscodeKit` into your project manually. Just copy the contents of the `Sources` folder into your Xcode project. +If you prefer not to use any of the dependency managers, you can integrate **PasscodeKit** into your project manually. Just copy all the `*.swift` files from the `PasscodeKit/Sources` folder into your Xcode project. ## REQUIREMENTS diff --git a/VERSION.txt b/VERSION.txt index 6d7de6e..21e8796 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.0.2 +1.0.3