Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CheckmarkView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CheckmarkView'
s.version = '0.0.1'
s.name = 'CheckmarkView-iOS'
s.version = '0.0.2'
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = 'Pixel perfect checkmark view for iOS'
s.homepage = 'https://beewisedevelopment.com'
Expand Down
2 changes: 2 additions & 0 deletions CheckmarkView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.bee.wise.development.checkmark.view.ios;
PRODUCT_NAME = CheckmarkView;
SKIP_INSTALL = YES;
Expand All @@ -716,6 +717,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.bee.wise.development.checkmark.view.ios;
PRODUCT_NAME = CheckmarkView;
SKIP_INSTALL = YES;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pixel perfect checkmark view for iOS, for any size you want

## Screenshots

<img src="https://user-images.githubusercontent.com/6670019/69714216-ae514f00-110e-11ea-8d3c-2ea3ded2ac48.png" width="75%"></img>
<img src="https://user-images.githubusercontent.com/6670019/69714216-ae514f00-110e-11ea-8d3c-2ea3ded2ac48.png" width="50%"></img>

## Requirements

Expand All @@ -40,7 +40,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!

pod 'CheckmarkView', '~> 0.0.1'
pod 'CheckmarkView-iOS', '~> 0.0.2'
```

Then, run the following command:
Expand All @@ -66,7 +66,7 @@ $ brew install carthage
To integrate **CheckmarkView** into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "BeeWise/CheckmarkView-iOS" ~> 0.0.1
github "BeeWise/CheckmarkView-iOS" ~> 0.0.2
```

</details>
Expand All @@ -84,7 +84,7 @@ import PackageDescription
let package = Package(
name: "HelloCheckmarkView",
dependencies: [
.package(url: "https://github.com/BeeWise/CheckmarkView-iOS.git", .upToNextMajor(from: "0.0.1"))
.package(url: "https://github.com/BeeWise/CheckmarkView-iOS.git", .upToNextMajor(from: "0.0.2"))
],
targets: [
.target(name: "HelloCheckmarkView", dependencies: ["CheckmarkView"])
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.0.1</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down