-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from DataDog/nachoBonafonte/RUMM-343-automate…
…-sdk-version-releases RUMM-343 Automate sdk version releases. You can now: `make bump` to set the agent version the library and podspec files `make ship' to lint and push the podspec files
- Loading branch information
Showing
7 changed files
with
75 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "DatadogSDK" | ||
s.module_name = "Datadog" | ||
s.version = "__DATADOG_VERSION__" | ||
s.summary = "Official Datadog Swift SDK for iOS." | ||
|
||
s.homepage = "https://www.datadoghq.com" | ||
s.social_media_url = "https://twitter.com/datadoghq" | ||
|
||
s.license = { :type => "Apache", :file => 'LICENSE' } | ||
s.authors = { | ||
"Maciek Grzybowski" => "[email protected]", | ||
"Mert Buran" => "[email protected]" | ||
} | ||
|
||
s.swift_version = '5.1' | ||
s.ios.deployment_target = '11.0' | ||
|
||
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s } | ||
|
||
s.source_files = ["Sources/Datadog/**/*.swift", | ||
"Sources/_Datadog_Private/**/*.{h,m}", | ||
"Datadog/TargetSupport/Datadog/Datadog.h"] | ||
s.public_header_files = "Datadog/TargetSupport/Datadog/Datadog.h" | ||
s.private_header_files = "Sources/_Datadog_Private/include/*.h" | ||
s.module_map = "Sources/Datadog/Datadog.modulemap" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "DatadogSDKObjc" | ||
s.module_name = "DatadogObjc" | ||
s.version = "__DATADOG_VERSION__" | ||
s.summary = "Official Datadog Objective-C SDK for iOS." | ||
|
||
s.homepage = "https://www.datadoghq.com" | ||
s.social_media_url = "https://twitter.com/datadoghq" | ||
|
||
s.license = { :type => "Apache", :file => 'LICENSE' } | ||
s.authors = { | ||
"Maciek Grzybowski" => "[email protected]", | ||
"Mert Buran" => "[email protected]" | ||
} | ||
|
||
s.swift_version = '5.1' | ||
s.ios.deployment_target = '11.0' | ||
|
||
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' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// GENERATED FILE: Do not edit directly | ||
|
||
internal let sdkVersion = "1.3.0-beta2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters