Skip to content

Commit

Permalink
RUMM-287 Update sdkVersion and .podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ncreated committed Mar 11, 2020
1 parent 92883fd commit ef1ff0a
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 34 deletions.
34 changes: 18 additions & 16 deletions Datadog.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
Pod::Spec.new do |spec|
spec.name = "Datadog"
spec.version = "0.0.1"
spec.summary = "Logging and iOS app monitoring using Datadog."
spec.description = <<-DESC
Logging and iOS app monitoring using Datadog in Swift.
DESC
spec.homepage = "https://www.datadoghq.com"
spec.license = { :type => "Apache" }
spec.authors = { "Maciek Grzybowski" => "[email protected]" }
spec.social_media_url = "https://twitter.com/datadoghq"
spec.platform = :ios, "12.0"
spec.swift_version = '5.1'
spec.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git',
:tag => spec.version.to_s }
spec.source_files = "Sources/Datadog/**/*.swift"
Pod::Spec.new do |s|
s.name = "Datadog"
s.version = "1.0.0-beta1"
s.summary = "Datadog Swift SDK for iOS and macOS."

s.homepage = "https://www.datadoghq.com"
s.social_media_url = "https://twitter.com/datadoghq"

s.license = { :type => "Apache" }
s.authors = { "Maciek Grzybowski" => "[email protected]" }

s.swift_version = '5.1'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'

s.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git', :tag => s.version.to_s }

s.source_files = "Sources/Datadog/**/*.swift"
end
36 changes: 19 additions & 17 deletions DatadogObjc.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
Pod::Spec.new do |spec|
spec.name = "DatadogObjc"
spec.version = "0.0.1"
spec.summary = "Logging and iOS app monitoring using Datadog."
spec.description = <<-DESC
Logging and iOS app monitoring using Datadog in Objective-C.
DESC
spec.homepage = "https://www.datadoghq.com"
spec.license = { :type => "Apache" }
spec.authors = { "Maciek Grzybowski" => "[email protected]" }
spec.social_media_url = "https://twitter.com/datadoghq"
spec.platform = :ios, "12.0"
spec.swift_version = '5.1'
spec.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git',
:tag => spec.version.to_s }
spec.source_files = "Sources/DatadogObjc/**/*.swift"
spec.dependency 'Datadog'
Pod::Spec.new do |s|
s.name = "DatadogObjc"
s.version = "1.0.0-beta1"
s.summary = "Datadog Objective-C SDK for iOS and macOS."

s.homepage = "https://www.datadoghq.com"
s.social_media_url = "https://twitter.com/datadoghq"

s.license = { :type => "Apache" }
s.authors = { "Maciek Grzybowski" => "[email protected]" }

s.swift_version = '5.1'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.14'

s.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git', :tag => s.version.to_s }

s.source_files = "Sources/DatadogObjc/**/*.swift"
s.dependency 'Datadog'
end
2 changes: 1 addition & 1 deletion Sources/Datadog/Datadog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Foundation

/// SDK version associated with logs.
/// Should be synced with SDK releases.
internal let sdkVersion = "1.0.0-alpha2"
internal let sdkVersion = "1.0.0-beta1"

/// Datadog SDK configuration object.
public class Datadog {
Expand Down

0 comments on commit ef1ff0a

Please sign in to comment.