Skip to content

Commit c3199dc

Browse files
committed
1.0.3
1 parent 7e94ce1 commit c3199dc

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

PasscodeKit.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 = 'PasscodeKit'
3-
s.version = '1.0.1'
3+
s.version = '1.0.3'
44
s.license = 'MIT'
55

66
s.summary = 'A lightweight and easy-to-use Passcode Kit for iOS.'

PasscodeKit/app.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@
337337
INFOPLIST_FILE = app/Info.plist;
338338
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
339339
LD_RUNPATH_SEARCH_PATHS = "$(inherited)";
340-
MARKETING_VERSION = 1.0.2;
340+
MARKETING_VERSION = 1.0.3;
341341
PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.passcodekit;
342342
PRODUCT_NAME = "$(TARGET_NAME)";
343343
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -370,7 +370,7 @@
370370
INFOPLIST_FILE = app/Info.plist;
371371
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
372372
LD_RUNPATH_SEARCH_PATHS = "$(inherited)";
373-
MARKETING_VERSION = 1.0.2;
373+
MARKETING_VERSION = 1.0.3;
374374
PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.passcodekit;
375375
PRODUCT_NAME = "$(TARGET_NAME)";
376376
PROVISIONING_PROFILE_SPECIFIER = "";

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,29 @@ PasscodeKit is a lightweight and easy-to-use, in-app Passcode implementation for
66

77
## INSTALLATION
88

9-
### CocoaPods:
9+
### CocoaPods
1010

11-
To use PasscodeKit with [CocoaPods](https://cocoapods.org), specify in your Podfile:
11+
[CocoaPods](https://cocoapods.org) is a dependency manager for Swift and Objective-C Cocoa projects.
12+
13+
To incorporate the **PasscodeKit** library into your Xcode project utilizing CocoaPods, please reference it within your `Podfile` as shown below:
1214

1315
```ruby
1416
pod 'PasscodeKit'
1517
```
1618

19+
### Swift Package Manager
20+
21+
[Swift Package Manager](https://swift.org/package-manager) is a tool for managing the distribution of Swift code.
22+
23+
Once you've configured your `Package.swift` manifest file, you may proceed to include **PasscodeKit** in the dependencies section of the same file.
24+
25+
```swift
26+
dependencies: [ .package(url: "https://github.com/relatedcode/PasscodeKit.git", from: "1.0.3") ]
27+
```
28+
1729
### Manually
1830

19-
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.
31+
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.
2032

2133
## REQUIREMENTS
2234

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.3

0 commit comments

Comments
 (0)