Skip to content

Release 0.19.0 #325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2024
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
10 changes: 9 additions & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,19 @@ ${next_release_notes}
[[release-notes-${version}]]
==== ${version} - ${release_date}

[float]
===== Features

* New feature: {pull}000[#000]
////

[[release-notes-0.19.0]]
==== 0.19.0 - 2024/05/30

[float]
===== Bug fixes

* Bytecode instrumentation issue in #323: {pull}324[#324]
////

[[release-notes-0.18.0]]
==== 0.18.0 - 2024/05/24
Expand Down
6 changes: 3 additions & 3 deletions docs/setup.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ You can skip this step if your `minSdkVersion` is 26 or higher.
[[adding-gradle-plugin]]
==== Add the Elastic Agent Gradle plugin

To automatically instrument <<supported-technologies,Supported Technologies>>, add the https://plugins.gradle.org/plugin/co.elastic.apm.android/0.18.0[Elastic APM agent plugin] to your application's `build.gradle` file as shown below:
To automatically instrument <<supported-technologies,Supported Technologies>>, add the https://plugins.gradle.org/plugin/co.elastic.apm.android/0.19.0[Elastic APM agent plugin] to your application's `build.gradle` file as shown below:

[source,groovy]
----
// Android app's build.gradle file
plugins {
id "com.android.application"
id "co.elastic.apm.android" version "0.18.0"
id "co.elastic.apm.android" version "0.19.0"
}
----

Expand Down Expand Up @@ -122,7 +122,7 @@ Add the Elastic APM agent SDK to your application's `build.gradle` file as shown
----
// Android app's build.gradle file
dependencies {
implementation "co.elastic.apm:android-sdk:0.18.0"
implementation "co.elastic.apm:android-sdk:0.19.0"
}
----

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Fri May 24 14:45:10 UTC 2024
#Thu May 30 09:16:00 UTC 2024
androidGradlePlugin_version=8.2.0
description=APM for Android applications with the Elastic stack
org.gradle.jvmargs=-XX\:MaxMetaspaceSize\=2G
version=0.19.0
version=0.20.0
android.useAndroidX=true
group=co.elastic.apm
Loading