Skip to content

Commit 49ecc73

Browse files
authored
LIB-1212: Promoting 3.7.0-beta.4 to release. (#834)
* Prepare for release 3.7.0 * Updated cartfile. * Updated version in SEGAnalytics.m * Updated version in readme instructions.
1 parent 892e09d commit 49ecc73

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

Analytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Analytics"
3-
s.version = "3.7.0-beta.4"
3+
s.version = "3.7.0"
44
s.summary = "The hassle-free way to add analytics to your iOS app."
55

66
s.description = <<-DESC

Analytics/Classes/SEGAnalytics.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,9 @@ + (void)debug:(BOOL)showDebugLogs
416416

417417
+ (NSString *)version
418418
{
419-
return @"3.7.0-beta.4";
419+
// this has to match the actual version, NOT what's in info.plist
420+
// because Apple only accepts X.X.X as versions in the review process.
421+
return @"3.7.0";
420422
}
421423

422424
#pragma mark - Helpers

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
Version 3.7.0 *(22nd July, 2019)*
5+
---------------------------------
6+
7+
This release promotes 3.7.0-beta.4 to stable.
8+
49
Version 3.7.0-beta.4 *(19th June, 2019)*
510
-----------------------------------------
611
* [Fix](https://github.com/segmentio/analytics-ios/pull/812): Remove invalid `.clang-format` symlink which can cause issues with manual builds.

Examples/CarthageExample/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "segmentio/analytics-ios" "3.7.0-beta.4"
1+
github "segmentio/analytics-ios" "3.7.0"
22
# Use a local project when debugging
33
# git "~/Code/segmentio/analytics-ios/" "master"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Analytics is available through [CocoaPods](http://cocoapods.org) and [Carthage](
5757
### CocoaPods
5858

5959
```ruby
60-
pod "Analytics", "3.6.10"
60+
pod "Analytics", "3.7.0"
6161
```
6262

6363
### Carthage

0 commit comments

Comments
 (0)