Skip to content

Commit

Permalink
Merge pull request #440 from DataDog/release/1.5.1
Browse files Browse the repository at this point in the history
Hotfix release 1.5.1
  • Loading branch information
buranmert authored Mar 12, 2021
2 parents 97b8747 + 75c66ac commit db69af6
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.5.1 / 03-11-2021

### Changes

* [BUGFIX] Carthage XCFrameworks support. See [#439][]

# 1.5.0 / 03-04-2021

### Changes
@@ -151,6 +157,7 @@
[#370]: https://github.com/DataDog/dd-sdk-ios/issues/370
[#381]: https://github.com/DataDog/dd-sdk-ios/issues/381
[#390]: https://github.com/DataDog/dd-sdk-ios/issues/390
[#439]: https://github.com/DataDog/dd-sdk-ios/pull/439
[@00FA9A]: https://github.com/00FA9A
[@Britton-Earnin]: https://github.com/Britton-Earnin
[@Hengyu]: https://github.com/Hengyu
2 changes: 1 addition & 1 deletion DatadogSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "DatadogSDK"
s.module_name = "Datadog"
s.version = "1.5.0"
s.version = "1.5.1"
s.summary = "Official Datadog Swift SDK for iOS."

s.homepage = "https://www.datadoghq.com"
6 changes: 3 additions & 3 deletions DatadogSDKAlamofireExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "DatadogSDKAlamofireExtension"
s.module_name = "DatadogAlamofireExtension"
s.version = "1.0.0"
s.version = "1.5.1"
s.summary = "An Official Extensions of Datadog Swift SDK for Alamofire."

s.homepage = "https://www.datadoghq.com"
@@ -18,9 +18,9 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '11.0'

# :tag must follow DatadogSDK version below
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => '1.5.0' }
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }

s.source_files = ["Sources/DatadogExtensions/Alamofire/**/*.swift"]
s.dependency 'DatadogSDK', '~> 1.5.0'
s.dependency 'DatadogSDK', s.version.to_s
s.dependency 'Alamofire', '~> 5.0'
end
4 changes: 2 additions & 2 deletions DatadogSDKObjc.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "DatadogSDKObjc"
s.module_name = "DatadogObjc"
s.version = "1.5.0"
s.version = "1.5.1"
s.summary = "Official Datadog Objective-C SDK for iOS."

s.homepage = "https://www.datadoghq.com"
@@ -20,5 +20,5 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git', :tag => s.version.to_s }

s.source_files = "Sources/DatadogObjc/**/*.swift"
s.dependency 'DatadogSDK', '1.5.0'
s.dependency 'DatadogSDK', '1.5.1'
end
2 changes: 1 addition & 1 deletion Sources/Datadog/Versioning.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// GENERATED FILE: Do not edit directly

internal let sdkVersion = "1.5.0"
internal let sdkVersion = "1.5.1"

0 comments on commit db69af6

Please sign in to comment.