Skip to content

Commit

Permalink
Release 0.3.0 🔖 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
slashmo committed Jul 1, 2022
1 parent 7685c23 commit 387d99b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Swift
uses: slashmo/install-swift@v0.1.0
uses: slashmo/install-swift@v0.3.0
with:
version: 5.6
- name: Resolve Swift dependencies
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -8,7 +8,7 @@ let package = Package(
.library(name: "OtlpGRPCSpanExporting", targets: ["OtlpGRPCSpanExporting"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-distributed-tracing.git", .upToNextMinor(from: "0.2.0")),
.package(url: "https://github.com/apple/swift-distributed-tracing.git", .upToNextMinor(from: "0.3.0")),
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.0.0"),
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -29,7 +29,7 @@ a trace created by "onboarding":
To add "OpenTelemetry Swift" to our project, we first need to include it as a package dependency:

```swift
.package(url: "https://github.com/slashmo/opentelemetry-swift.git", from: "0.1.0"),
.package(url: "https://github.com/slashmo/opentelemetry-swift.git", from: "0.3.0"),
```

Then we add `OpenTelemetry` to our executable target:
Expand Down Expand Up @@ -63,7 +63,7 @@ try group.syncShutdownGracefully()
```

> ⚠️ With this setup, ended spans will be ignored and not exported to a tracing backend. Read on to learn more
about [how to configure processing & exporting](#configuring-processing-and-exporting).
> about [how to configure processing & exporting](#configuring-processing-and-exporting).
### Configuring processing and exporting

Expand Down Expand Up @@ -380,7 +380,7 @@ OTel.ResourceDetection.none

To ensure a consistent code style we use [SwiftFormat](https://github.com/nicklockwood/SwiftFormat).
To automatically run it before you push to GitHub, you may define a `pre-push` Git hook executing
the *soundness* script:
the _soundness_ script:

```sh
echo './scripts/soundness.sh' > .git/hooks/pre-push
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenTelemetry/OTel.swift
Expand Up @@ -18,7 +18,7 @@ import Tracing
/// The main entry point to using OpenTelemetry.
public final class OTel {
/// The current `semver` version of the library.
public static let versionString = "0.1.0"
public static let versionString = "0.3.0"

private let eventLoopGroup: EventLoopGroup
private let resourceDetection: ResourceDetection
Expand Down

0 comments on commit 387d99b

Please sign in to comment.