aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Mastrangelo <carl@carlmastrangelo.com>2022-11-09 00:01:14 -0800
committerCarl Mastrangelo <carl@carlmastrangelo.com>2022-11-09 00:01:14 -0800
commit6379acce97e9b2ec1b6f3e23c420b85fa2a1731a (patch)
tree891005a12174282b7aa466c0e9cc24c013c31d2f
parent7069210b58b270ac52c795f764e861e104b7aa98 (diff)
downloadperfmark-upstream-v0.26.x.tar.gz
Update README.md to point to latest versionupstream-v0.26.x
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f4ac57d..69bd13c 100644
--- a/README.md
+++ b/README.md
@@ -35,9 +35,9 @@ tracing function calls to their code to see how long each part takes.
To use PerfMark, add the following dependencies to your `build.gradle`:
```
dependencies {
- implementation 'io.perfmark:perfmark-api:0.25.0'
+ implementation 'io.perfmark:perfmark-api:0.26.0'
// Only needed for applications, not libraries.
- implementation 'io.perfmark:perfmark-traceviewer:0.25.0'
+ implementation 'io.perfmark:perfmark-traceviewer:0.26.0'
}
```
@@ -47,7 +47,7 @@ Or in your `pom.xml`:
<dependency>
<groupId>io.perfmark</groupId>
<artifactId>perfmark-api</artifactId>
- <version>0.25.0</version>
+ <version>0.26.0</version>
</dependency>
```