Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ All notable changes to this project will be documented in this file.
> **Note:** This CHANGELOG was created starting from version 0.0.0. Earlier changes are not documented here.

## Unreleased

## v1.0.0 - 2025-11-19
- chore(release): Test release workflows with version 0.0.0 ([#112](https://github.com/aws-observability/aws-otel-android/pull/112))
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess these are not unreleased changes anymore, so should we delete them now or on the next pr?

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Add to your app's `build.gradle`. For a Kotlin DSL example:
```kotlin
dependencies {
// For automatic instrumentation (recommended; see below for programmatic configuration)
implementation("software.amazon.opentelemetry.android:agent:0.0.0")
implementation("software.amazon.opentelemetry.android:agent:1.0.0")

// For HTTP instrumentation with ByteBuddy
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-agent:0.12.0-alpha") // if you are using OkHttp-3.0
byteBuddy("io.opentelemetry.android.instrumentation:httpurlconnection-agent:0.12.0-alpha") // if you are using URLConnection / HttpURLConnection / HttpsURLConnection
byteBuddy("io.opentelemetry.android.instrumentation:okhttp3-agent:0.15.0-alpha") // if you are using OkHttp-3.0
byteBuddy("io.opentelemetry.android.instrumentation:httpurlconnection-agent:0.15.0-alpha") // if you are using URLConnection / HttpURLConnection / HttpsURLConnection
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ For advanced use cases requiring custom credential management, use SigV4-signed

```kotlin
dependencies {
implementation("software.amazon.opentelemetry.android:core:LATEST_VERSION")
implementation("software.amazon.opentelemetry.android:aws-runtime:LATEST_VERSION")
implementation("software.amazon.opentelemetry.android:core:1.0.0")
implementation("software.amazon.opentelemetry.android:kotlin-sdk-auth:1.0.0")
}
```

Expand Down
Loading