Skip to content

Commit

Permalink
build: bump version from 1.0.2 to 1.0.3
Browse files Browse the repository at this point in the history
refactor: remove Facefy @objc
  • Loading branch information
TeruyaHaroldo committed Mar 15, 2021
1 parent 54f71ea commit ab79aa8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Example/YoonitFacefyDemo/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ PODS:
- PromisesObjC (1.2.12)
- Protobuf (3.14.0)
- YoonitCamera (2.3.0)
- YoonitFacefy (1.0.2):
- YoonitFacefy (1.0.3):
- GoogleMLKit/FaceDetection

DEPENDENCIES:
Expand Down Expand Up @@ -94,7 +94,7 @@ SPEC CHECKSUMS:
PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97
Protobuf: 0cde852566359049847168e51bd1c690e0f70056
YoonitCamera: a25677c77bc14f22fc9efaffceff60b54cc32049
YoonitFacefy: b627d9a94fa968d90a8b9915895cd5986d1630fa
YoonitFacefy: 6528f0432d1fb05add2a6d257318f160538337c1

PODFILE CHECKSUM: 45150530e3052be2fb55a1493c2f00eedc5c1d3b

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/YoonitFacefyDemo/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion YoonitFacefy.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
#

spec.name = "YoonitFacefy"
spec.version = "1.0.2"
spec.version = "1.0.3"
spec.summary = "The face detection's module for iOS with a lot of awesome features"

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions YoonitFacefy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = ai.cyberlabs.YoonitFacefy;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -452,7 +452,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = ai.cyberlabs.YoonitFacefy;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
7 changes: 4 additions & 3 deletions YoonitFacefy/src/Facefy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ import Foundation
import UIKit
import Vision

@objc
public class Facefy: NSObject {
public class Facefy {

var facefyController = FacefyController()
private var facefyController = FacefyController()

public init() {}

public func detect(
_ image: UIImage,
Expand Down

0 comments on commit ab79aa8

Please sign in to comment.