Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
Anamorphosee committed Sep 19, 2024
1 parent 04e4dd9 commit 2f54724
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ Thus, if the coroutine throws an exception, they mimic the real call stack of th
### JVM
There are three ways to enable Stacktrace-decoroutinator for JVM.
1. (recommended) If you build your project with Gradle, just apply Gradle plugin with id `dev.reformator.stacktracedecoroutinator`.
2. Add dependency `dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-jvm:2.4.4` and call method `DecoroutinatorJvmApi.install()`.
3. Add `-javaagent:stacktrace-decoroutinator-jvm-agent-2.4.4.jar` to your JVM start arguments. Corresponding dependency is `dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-jvm-agent:2.4.4`.
2. Add dependency `dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-jvm:2.4.5` and call method `DecoroutinatorJvmApi.install()`.
3. Add `-javaagent:stacktrace-decoroutinator-jvm-agent-2.4.5.jar` to your JVM start arguments. Corresponding dependency is `dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-jvm-agent:2.4.5`.

The first option generates auxiliary methods at build time and the other two use the Java instrumentation API at runtime.

Expand Down Expand Up @@ -156,7 +156,7 @@ java.lang.Exception: exception at 1725331728978
For Android there is only one option to enable Stacktrace-decoroutinator - apply the Gradle plugin `dev.reformator.stacketracedecoroutinator` to your application's project.
```kotlin
plugins {
id("dev.reformator.stacktracedecoroutinator") version "2.4.4"
id("dev.reformator.stacktracedecoroutinator") version "2.4.5"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ buildscript {

subprojects {
group = "dev.reformator.stacktracedecoroutinator"
version = "2.4.5-SNAPSHOT"
version = "2.4.5"
}

0 comments on commit 2f54724

Please sign in to comment.