Skip to content

Commit 8226fb9

Browse files
committedOct 20, 2019
Bump version to 1.0.2
1 parent 1a1debf commit 8226fb9

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed
 

‎InAppViewDebugger.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "InAppViewDebugger"
3-
spec.version = "1.0.1"
3+
spec.version = "1.0.2"
44
spec.summary = "A UIView debugger (like Reveal or Xcode) that can be embedded in an app for on-device view debugging."
55
spec.homepage = "https://github.com/indragiek/InAppViewDebugger"
66
spec.screenshots = "https://raw.githubusercontent.com/indragiek/InAppViewDebugger/master/docs/img/main.png"

‎InAppViewDebugger.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@
633633
CODE_SIGN_STYLE = Automatic;
634634
DEFINES_MODULE = YES;
635635
DYLIB_COMPATIBILITY_VERSION = 1;
636-
DYLIB_CURRENT_VERSION = 2;
636+
DYLIB_CURRENT_VERSION = 3;
637637
DYLIB_INSTALL_NAME_BASE = "@rpath";
638638
INFOPLIST_FILE = InAppViewDebugger/Info.plist;
639639
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -643,6 +643,7 @@
643643
"@executable_path/Frameworks",
644644
"@loader_path/Frameworks",
645645
);
646+
MARKETING_VERSION = 1.0.2;
646647
PRODUCT_BUNDLE_IDENTIFIER = com.indragie.InAppViewDebugger;
647648
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
648649
SKIP_INSTALL = YES;
@@ -660,7 +661,7 @@
660661
CODE_SIGN_STYLE = Automatic;
661662
DEFINES_MODULE = YES;
662663
DYLIB_COMPATIBILITY_VERSION = 1;
663-
DYLIB_CURRENT_VERSION = 2;
664+
DYLIB_CURRENT_VERSION = 3;
664665
DYLIB_INSTALL_NAME_BASE = "@rpath";
665666
INFOPLIST_FILE = InAppViewDebugger/Info.plist;
666667
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -670,6 +671,7 @@
670671
"@executable_path/Frameworks",
671672
"@loader_path/Frameworks",
672673
);
674+
MARKETING_VERSION = 1.0.2;
673675
PRODUCT_BUNDLE_IDENTIFIER = com.indragie.InAppViewDebugger;
674676
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
675677
SKIP_INSTALL = YES;

‎InAppViewDebugger/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.1</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

‎README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
Add the following line to your `Podfile`:
3030

3131
```ruby
32-
pod 'InAppViewDebugger', '~> 1.0.1'
32+
pod 'InAppViewDebugger', '~> 1.0.2'
3333
```
3434

3535
### Carthage
3636

3737
Add the following line to your `Cartfile`:
3838

3939
```
40-
github "indragiek/InAppViewDebugger" "1.0.1"
40+
github "indragiek/InAppViewDebugger" "1.0.2"
4141
```
4242

4343
## Usage
@@ -57,7 +57,7 @@ import InAppViewDebugger
5757
```objc
5858
@import InAppViewDebugger;
5959

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

6363
- (IBAction)showViewDebugger:(id)sender {
@@ -126,7 +126,7 @@ The current implementation only supports `UIView` hierarchies, but this can easi
126126

127127
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
128128
```swift
129-
InAppViewDebugger.presentWithSnapshot(:rootViewController:configuration:completion:
129+
InAppViewDebugger.presentWithSnapshot(:rootViewController:configuration:completion:
130130
```
131131
to show the view debugger.
132132

@@ -144,4 +144,3 @@ to show the view debugger.
144144
## License
145145

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

0 commit comments

Comments
 (0)
Please sign in to comment.