Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Feb 15, 2017
1 parent 2a0476d commit 30ee148
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 27 deletions.
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ excluded:
- iOS
- Carthage
- Pods
- Utils
whitelist_rules:
#- attributes
- class_delegate_protocol
Expand Down
4 changes: 2 additions & 2 deletions Examples/MacExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PODS:
- KSCrash/Reporting/Tools
- KSCrash/Reporting/Tools (1.15.3):
- KSCrash/Recording
- Sentry (2.1.0):
- Sentry (2.1.1):
- KSCrash (~> 1.15.3)

DEPENDENCIES:
Expand All @@ -74,7 +74,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
KSCrash: f344875321256d5906569a0853d73c6354a9f6f4
Sentry: f488b86ef5004d448bccc7e85ab0ad1c6062942d
Sentry: 2a7843e59ec38c43bb7270beba0a5eac12c4f6a2

PODFILE CHECKSUM: 9a6feca63fe6ed3706b2808f4c85dae0861ba9d2

Expand Down
4 changes: 2 additions & 2 deletions Examples/ObjCExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PODS:
- KSCrash/Reporting/Tools
- KSCrash/Reporting/Tools (1.15.3):
- KSCrash/Recording
- Sentry (2.1.0):
- Sentry (2.1.1):
- KSCrash (~> 1.15.3)

DEPENDENCIES:
Expand All @@ -74,7 +74,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
KSCrash: f344875321256d5906569a0853d73c6354a9f6f4
Sentry: f488b86ef5004d448bccc7e85ab0ad1c6062942d
Sentry: 2a7843e59ec38c43bb7270beba0a5eac12c4f6a2

PODFILE CHECKSUM: 6e920273a2258e01d891dd3561ac2a73612fe34a

Expand Down
4 changes: 2 additions & 2 deletions Examples/SwiftExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PODS:
- KSCrash/Reporting/Tools
- KSCrash/Reporting/Tools (1.15.3):
- KSCrash/Recording
- Sentry (2.1.0):
- Sentry (2.1.1):
- KSCrash (~> 1.15.3)

DEPENDENCIES:
Expand All @@ -74,7 +74,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
KSCrash: f344875321256d5906569a0853d73c6354a9f6f4
Sentry: f488b86ef5004d448bccc7e85ab0ad1c6062942d
Sentry: 2a7843e59ec38c43bb7270beba0a5eac12c4f6a2

PODFILE CHECKSUM: 699517be0d67a415d70bbce5f2d55f918605fcbc

Expand Down
4 changes: 2 additions & 2 deletions Examples/SwiftTVOSExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PODS:
- KSCrash/Reporting/Tools
- KSCrash/Reporting/Tools (1.15.3):
- KSCrash/Recording
- Sentry (2.1.0):
- Sentry (2.1.1):
- KSCrash (~> 1.15.3)

DEPENDENCIES:
Expand All @@ -74,7 +74,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
KSCrash: f344875321256d5906569a0853d73c6354a9f6f4
Sentry: f488b86ef5004d448bccc7e85ab0ad1c6062942d
Sentry: 2a7843e59ec38c43bb7270beba0a5eac12c4f6a2

PODFILE CHECKSUM: 6a149bade470704ba4317901492b58978f603305

Expand Down
4 changes: 2 additions & 2 deletions Examples/SwiftWatchOSExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ PODS:
- KSCrash/Reporting/Tools
- KSCrash/Reporting/Tools (1.15.3):
- KSCrash/Recording
- Sentry (2.1.0):
- Sentry (2.1.1):
- KSCrash (~> 1.15.3)

DEPENDENCIES:
Expand All @@ -74,7 +74,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
KSCrash: f344875321256d5906569a0853d73c6354a9f6f4
Sentry: f488b86ef5004d448bccc7e85ab0ad1c6062942d
Sentry: 2a7843e59ec38c43bb7270beba0a5eac12c4f6a2

PODFILE CHECKSUM: c9a2358b4bf5bf7e6f601eb701b288f4e4bd724a

Expand Down
17 changes: 15 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ lint:

test:
@echo "--> Running all tests"
fastlane test
fastlane test --silent

build-carthage:
@echo "--> Creating Sentry framework package with carthage"
carthage build --no-skip-current
carthage archive Sentry

release: lint test pod-example-projects pod-lint build-carthage
release: bump-version lint test pod-example-projects pod-lint build-carthage git-commit-add

build-time:
@echo "--> Analysing build time"
Expand All @@ -34,3 +34,16 @@ pod-example-projects:
pod-release:
@echo "--> Releasing Pod"
pod trunk push Sentry.podspec --allow-warnings

build-version-bump:
@echo "--> Building VersionBump"
cd Utils/VersionBump && rm -rf .build && swift build

bump-version: build-version-bump
@echo "--> Bumping version from ${FROM} to ${TO}"
./Utils/VersionBump/.build/debug/VersionBump ${FROM} ${TO}

git-commit-add:
@echo "\n\n\n--> Commting git ${TO}"
git commit -am "Bump version to ${TO}"
git tag ${TO}
2 changes: 1 addition & 1 deletion Sentry.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sentry"
s.version = "2.1.0"
s.version = "2.1.1"
s.summary = "Swift client for Sentry"
s.homepage = "https://github.com/getsentry/sentry-swift"
s.license = "mit"
Expand Down
2 changes: 1 addition & 1 deletion Sentry/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>2.1.0</string>
<string>2.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sentry.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import KSCrash
// MARK: - Enums

internal struct Info {
static let version: String = "2.1.0"
static let version: String = "2.1.1"
static let sentryVersion: Int = 7
}

Expand Down
2 changes: 1 addition & 1 deletion docs/sentry-doc-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
}
},
"vars": {
"SENTRY_SWIFT_TAG": "2.1.0"
"SENTRY_SWIFT_TAG": "2.1.1"
}
}
29 changes: 26 additions & 3 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
fastlane documentation
================
# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
sudo gem install fastlane
xcode-select --install
```

## Choose your installation method:

<table width="100%" >
<tr>
<th width="33%"><a href="http://brew.sh">Homebrew</a></td>
<th width="33%">Installer Script</td>
<th width="33%">Rubygems</td>
</tr>
<tr>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS or Linux with Ruby 2.0.0 or above</td>
</tr>
<tr>
<td width="33%"><code>brew cask install fastlane</code></td>
<td width="33%"><a href="https://download.fastlane.tools/fastlane.zip">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
</tr>
</table>
# Available Actions
### test
```
Expand Down Expand Up @@ -59,5 +82,5 @@ fastlane travis_slather
----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [https://fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [https://docs.fastlane.tools](https://docs.fastlane.tools).
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
9 changes: 1 addition & 8 deletions release-checklist.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
# Release Checklist

- [ ] Bump version in podspec file
- [ ] Bump version in framework xcode targets
- [ ] Bump version in `Sentry.swift`
- [ ] Bump version in `docs/sentry-doc-config.json`
- [ ] Run `make release`
- [ ] Ensure all needed changes are checked in the master branch
- [ ] Create a version tag
- [ ] Update `docs/`
- [ ] Run `make release FROM=x.x.x TO=x.x.x`
- [ ] Push new podspec version to master repo `pod trunk push Sentry.podspec --allow-warnings`
- [ ] Write down changes on github in releases
- [ ] Upload Sentry.Framework.zip to github release

0 comments on commit 30ee148

Please sign in to comment.