From 8e40535757ea95fb78466dcc03ef99ad9a090f1f Mon Sep 17 00:00:00 2001 From: jason plumb <75337021+breedx-splk@users.noreply.github.com> Date: Tue, 24 Jan 2023 10:08:04 -0800 Subject: [PATCH] Release 1.0.0 (#450) * release 1.0.0 * remove rc references --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) 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