Skip to content

Commit

Permalink
v1.2.0 Release (#246)
Browse files Browse the repository at this point in the history
* v1.2.0 Release

* bumped github action macos version
  • Loading branch information
bryce-b authored Dec 2, 2024
1 parent 37b11e0 commit ac08a53
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ permissions:

jobs:
macos:
runs-on: macos-14
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2.0'
xcode-version: '16.1.0'
- uses: actions/checkout@v4

- name: Run build
run: .ci/scripts/build.sh

- name: Run test
run: xcodebuild -scheme apm-agent-ios-Package -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' test
run: xcodebuild -scheme apm-agent-ios-Package -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16' test

- name: Run package snapshots
run: .ci/scripts/package.sh
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
[[release-notes-next]]
=== Next
[[release-notes-v1.2.0]]
=== v1.2.0
==== Features
- Updated OpenTelemetry-Swift to v1.12.1, addressing various issues.
[[release-notes-v1.0.2]]
=== v1.0.2
==== Features
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/ashleymills/Reachability.swift", from: "5.2.4"),
.package(
url: "https://github.com/open-telemetry/opentelemetry-swift", exact: "1.11.0"),
url: "https://github.com/open-telemetry/opentelemetry-swift", exact: "1.12.1"),
.package(url: "https://github.com/MobileNativeFoundation/Kronos.git", .upToNextMajor(from: "4.2.2")),
.package(
url: "https://github.com/microsoft/plcrashreporter.git", .upToNextMajor(from: "1.0.0")),
Expand Down
2 changes: 1 addition & 1 deletion Sources/apm-agent-ios/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
import Foundation

extension ElasticApmAgent {
public static let elasticSwiftAgentVersion: String = "1.0.0"
public static let elasticSwiftAgentVersion: String = "1.2.0"
}
2 changes: 1 addition & 1 deletion docs/setup.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Below is a helpful code-snippet:
----
Package(
dependencies:[
.package(name: "apm-agent-ios", url: "https://github.com/elastic/apm-agent-ios.git", from: "1.0.0"),
.package(name: "apm-agent-ios", url: "https://github.com/elastic/apm-agent-ios.git", from: "1.2.0"),
],
targets:[
.target(
Expand Down
2 changes: 1 addition & 1 deletion docs/supported-tech.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ The Elastic APM iOS Agent automatically instruments various APIs, frameworks, an
[options="header"]
|===
| Framework | Version
| OpenTelemetry-Swift | 1.9.0
| OpenTelemetry-Swift | 1.12.1
|===

0 comments on commit ac08a53

Please # to comment.