diff --git a/CHANGELOG.md b/CHANGELOG.md index e00614010..5f798e36c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). * TBD +## Version 1.0.0 + +Version 1.0.0 marks the initial _stable_ release of `splunk-otel-android`. + ## Version 1.0.0-rc.3 Release candidate for 1.0.0. diff --git a/README.md b/README.md index 4e99a5b0c..c9c80213a 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Then, add the latest release as a dependency in your application's build.gradle ``` dependencies { ... - implementation ("com.splunk:splunk-otel-android:1.0.0-rc.3") + implementation ("com.splunk:splunk-otel-android:1.0.0") ... } ``` @@ -125,7 +125,7 @@ Then, add the locally built library as a dependency in your application's build. ``` dependencies { ... - implementation ("com.splunk:splunk-otel-android:1.0.0-rc.4-SNAPSHOT") + implementation ("com.splunk:splunk-otel-android:1.1.0-SNAPSHOT") ... } ``` diff --git a/gradle.properties b/gradle.properties index 812fbfe8a..dae4c267b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,5 +16,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 # https://developer.android.com/topic/libraries/support-library/androidx-rn android.useAndroidX=true -version=1.0.0-rc.3 +version=1.0.0 group=com.splunk