Skip to content

Commit

Permalink
LIB-1212: Promoting 3.7.0-beta.4 to release. (#834) (#836)
Browse files Browse the repository at this point in the history
* Prepare for release 3.7.0

* Updated cartfile.

* Updated version in SEGAnalytics.m

* Updated version in readme instructions.
  • Loading branch information
bsneed authored Jul 25, 2019
1 parent 6dd748d commit 33856cf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Analytics.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Analytics"
s.version = "3.7.0-beta.4"
s.version = "3.7.0"
s.summary = "The hassle-free way to add analytics to your iOS app."

s.description = <<-DESC
Expand Down
4 changes: 3 additions & 1 deletion Analytics/Classes/SEGAnalytics.m
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,9 @@ + (void)debug:(BOOL)showDebugLogs

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

#pragma mark - Helpers
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 3.7.0 *(22nd July, 2019)*
---------------------------------

This release promotes 3.7.0-beta.4 to stable.

Version 3.7.0-beta.4 *(19th June, 2019)*
-----------------------------------------
* [Fix](https://github.com/segmentio/analytics-ios/pull/812): Remove invalid `.clang-format` symlink which can cause issues with manual builds.
Expand Down
2 changes: 1 addition & 1 deletion Examples/CarthageExample/Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "segmentio/analytics-ios" "3.7.0-beta.4"
github "segmentio/analytics-ios" "3.7.0"
# Use a local project when debugging
# git "~/Code/segmentio/analytics-ios/" "master"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Analytics is available through [CocoaPods](http://cocoapods.org) and [Carthage](
### CocoaPods

```ruby
pod "Analytics", "3.6.10"
pod "Analytics", "3.7.0"
```

### Carthage
Expand Down

0 comments on commit 33856cf

Please sign in to comment.