Skip to content

Commit

Permalink
Prepare for the rc3 release (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Rzeszutek authored Dec 20, 2022
1 parent 06130eb commit 425f74b
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 20 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

* TBD

## Version 1.0.0-rc.3

Release candidate for 1.0.0.

* Updated to OpenTelemetry Java v1.21.0 (#421)
* Guard against creating empty spans files when using disk buffering (#407)
* Don't include first frame in draw duration histogram for slow renders (#400)

## Version 1.0.0-rc.2

Release candidate for 1.0.0.
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
</p>

<p align="center">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.19.0">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.19.0-blueviolet?style=for-the-badge">
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.21.0">
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.21.0-blueviolet?style=for-the-badge">
</a>
<a href="https://github.com/signalfx/splunk-otel-android/releases">
<img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/signalfx/splunk-otel-android?include_prereleases&style=for-the-badge">
</a>
<a href="https://maven-badges.herokuapp.com/maven-central/com.splunk/splunk-otel-android">
<img alt="Maven Central" src="https://img.shields.io/maven-central/v/com.splunk/splunk-otel-android?style=for-the-badge">
</a>
<a href="https://github.com/signalfx/splunk-otel-android/actions?query=workflow%3A%22Continuous+Build%22">
<img alt="Build Status" src="https://img.shields.io/github/workflow/status/signalfx/splunk-otel-android/Continuous%20Build?style=for-the-badge">
<a href="https://github.com/signalfx/splunk-otel-android/actions/workflows/main.yaml">
<img alt="Build Status" src="https://img.shields.io/github/actions/workflow/status/signalfx/splunk-otel-android/main.yaml?branch=main&style=for-the-badge">
</a>

<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.4.0">
Expand Down Expand Up @@ -91,7 +91,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.2")
implementation ("com.splunk:splunk-otel-android:1.0.0-rc.3")
...
}
```
Expand Down Expand Up @@ -127,7 +127,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.3-SNAPSHOT")
implementation ("com.splunk:splunk-otel-android:1.0.0-rc.4-SNAPSHOT")
...
}
```
Expand Down Expand Up @@ -321,10 +321,10 @@ To disable this feature, call `.disableSlowRenderingDetection()` on the

Splunk RUM defines renders as slow or frozen following the [Android Vitals definitions](https://developer.android.com/topic/performance/vitals/frozen):

| Category | Speed | spanName | Attribute |
|----------|---------|---------------|-------------|
| Slow | >16ms | slowRenders | count |
| Frozen | >700ms | frozenRenders | count |
| Category | Speed | spanName | Attribute |
|----------|--------|---------------|-----------|
| Slow | >16ms | slowRenders | count |
| Frozen | >700ms | frozenRenders | count |

## Customizing screen names

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
// keep this version in sync with /buildSrc/build.gradle.kts
classpath("com.android.tools.build:gradle:7.3.0")
classpath("com.android.tools.build:gradle:7.3.1")
}
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {

dependencies {
// keep this version in sync with /build.gradle.kts
implementation("com.android.tools.build:gradle:7.3.0")
implementation("com.android.tools.build:gradle:7.3.1")

implementation("com.diffplug.spotless:spotless-plugin-gradle:6.12.0")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.0.1")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
version=1.0.0-rc.3
group=com.splunk
2 changes: 2 additions & 0 deletions sample-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ val localProperties = Properties()
localProperties.load(FileInputStream(rootProject.file("local.properties")))

android {
namespace = "com.splunk.android.sample"

compileSdk = 33
buildToolsVersion = "30.0.3"

Expand Down
4 changes: 2 additions & 2 deletions sample-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.splunk.android.sample">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<!-- for location tracking -->
Expand Down
2 changes: 1 addition & 1 deletion splunk-otel-android-volley/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ you will also need to add the `splunk-otel-android-volley` dependency to your `b
```gradle
dependencies {
...
implementation("com.splunk:splunk-otel-android-volley:1.0.0-rc.2")
implementation("com.splunk:splunk-otel-android-volley:1.0.0-rc.3")
...
}
```
Expand Down
2 changes: 2 additions & 0 deletions splunk-otel-android-volley/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

android {
namespace = "com.splunk.android.rum.volley"

compileSdk = 33
buildToolsVersion = "30.0.3"

Expand Down
3 changes: 1 addition & 2 deletions splunk-otel-android-volley/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.splunk.android.rum.volley">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
2 changes: 2 additions & 0 deletions splunk-otel-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ plugins {
}

android {
namespace = "com.splunk.android.rum"

compileSdk = 33
buildToolsVersion = "30.0.3"

Expand Down
3 changes: 1 addition & 2 deletions splunk-otel-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.splunk.android.rum">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down

0 comments on commit 425f74b

Please sign in to comment.