Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #253 from Lickability/bump-version-1.3.0
Browse files Browse the repository at this point in the history
Bump Version to 1.3.0
  • Loading branch information
mliberatore authored Oct 5, 2018
2 parents 51a1f65 + 9eac658 commit be707e9
Show file tree
Hide file tree
Showing 9 changed files with 95 additions and 99 deletions.
2 changes: 1 addition & 1 deletion Example/PinpointKitExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.0</string>
<string>1.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- PinpointKit (1.2.0):
- PinpointKit/Core (= 1.2.0)
- PinpointKit/Core (1.2.0)
- PinpointKit (1.3.0):
- PinpointKit/Core (= 1.3.0)
- PinpointKit/Core (1.3.0)
- SwiftLint (0.25.1)

DEPENDENCIES:
Expand All @@ -17,7 +17,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
PinpointKit: 152e8eb82636e0a75dbb14c05f2b55110c42f5bb
PinpointKit: 103b424089fdccd3df24588d72087ebfb4bc7cae
SwiftLint: ce933681be10c3266e82576dad676fa815a602e9

PODFILE CHECKSUM: 24af8a2ca63352a72ca1cd13fc8977477eae3a12
Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/PinpointKit.podspec.json

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

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

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

158 changes: 77 additions & 81 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Example/Pods/Target Support Files/PinpointKit/Info.plist

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

4 changes: 2 additions & 2 deletions PinpointKit.podspec.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "PinpointKit",
"version": "1.2.0",
"version": "1.3.0",
"homepage": "https://github.com/Lickability/PinpointKit",
"source": {
"git": "https://github.com/Lickability/PinpointKit.git",
"tag": "1.2.0"
"tag": "1.3.0"
},
"summary": "A library that makes bug reporting simple for your users by allowing them to send feedback with annotated screenshots and logs.",
"authors" : {
Expand Down
2 changes: 1 addition & 1 deletion PinpointKit/PinpointKit/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.2.0</string>
<string>1.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ platform :ios, '9.0'
use_frameworks!

target 'YOUR_TARGET_NAME' do
pod 'PinpointKit', '~> 1.2.0'
pod 'PinpointKit', '~> 1.3.0'
end

```
Expand All @@ -79,7 +79,7 @@ $ pod install
We also offer a convenience class, [`ScreenshotDetector`](https://github.com/Lickability/PinpointKit/blob/master/PinpointKit/PinpointKit/Sources/ScreenshotDetector/ScreenshotDetector.swift) that is available via the `ScreenshotDetector` subspec. This class provides delegate callbacks when the user takes a screenshot while using your app. Please see the [Requirements](#requirements) section regarding inclusion of [`ScreenshotDetector`](https://github.com/Lickability/PinpointKit/blob/master/PinpointKit/PinpointKit/Sources/ScreenshotDetector/ScreenshotDetector.swift). You can add this to your project by adding the following line in your `Podfile`, in addition to the one for `PinpointKit` above:

```ruby
pod 'PinpointKit/ScreenshotDetector', '~> 1.2.0'
pod 'PinpointKit/ScreenshotDetector', '~> 1.3.0'
```

### Carthage
Expand All @@ -96,7 +96,7 @@ $ brew install carthage
To integrate PinpointKit into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "Lickability/PinpointKit" ~> 1.2.0
github "Lickability/PinpointKit" ~> 1.3.0
```

- Run `carthage update` to build the framework.
Expand Down

0 comments on commit be707e9

Please sign in to comment.