Release 1.8.8

This commit is contained in:
Andrei Pangin
2022-09-10 02:25:05 +03:00
parent f9afcaf5e7
commit 50fccae0fc
4 changed files with 15 additions and 10 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## [1.8.8] - 2022-09-10
### Bug fixes
- Could not find NativeLibrary_load on JDK 11.0.15
## [1.8.7] - 2021-10-01
### Bug fixes

View File

@@ -1,4 +1,4 @@
PROFILER_VERSION=1.8.7
PROFILER_VERSION=1.8.8
JATTACH_VERSION=1.5
JAVAC_RELEASE_VERSION=6

View File

@@ -14,14 +14,14 @@ async-profiler can trace the following kinds of events:
## Download
Latest v1 release (1.8.7):
Latest v1 release (1.8.8):
- Linux x64 (glibc): [async-profiler-1.8.7-linux-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-linux-x64.tar.gz)
- Linux x86 (glibc): [async-profiler-1.8.7-linux-x86.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-linux-x86.tar.gz)
- Linux x64 (musl): [async-profiler-1.8.7-linux-musl-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-linux-musl-x64.tar.gz)
- Linux ARM: [async-profiler-1.8.7-linux-arm.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-linux-arm.tar.gz)
- Linux AArch64: [async-profiler-1.8.7-linux-aarch64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-linux-aarch64.tar.gz)
- macOS x64: [async-profiler-1.8.7-macos-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.7/async-profiler-1.8.7-macos-x64.tar.gz)
- Linux x64 (glibc): [async-profiler-1.8.8-linux-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-linux-x64.tar.gz)
- Linux x86 (glibc): [async-profiler-1.8.8-linux-x86.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-linux-x86.tar.gz)
- Linux x64 (musl): [async-profiler-1.8.8-linux-musl-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-linux-musl-x64.tar.gz)
- Linux ARM: [async-profiler-1.8.8-linux-arm.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-linux-arm.tar.gz)
- Linux AArch64: [async-profiler-1.8.8-linux-aarch64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-linux-aarch64.tar.gz)
- macOS x64: [async-profiler-1.8.8-macos-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v1.8.8/async-profiler-1.8.8-macos-x64.tar.gz)
[Other releases](https://github.com/jvm-profiling-tools/async-profiler/releases)
@@ -236,7 +236,7 @@ $ java -agentpath:/path/to/libasyncProfiler.so=start,file=profile.svg ...
Agent library is configured through the JVMTI argument interface.
The format of the arguments string is described
[in the source code](https://github.com/jvm-profiling-tools/async-profiler/blob/v1.8.7/src/arguments.cpp#L49).
[in the source code](https://github.com/jvm-profiling-tools/async-profiler/blob/v1.8.8/src/arguments.cpp#L49).
The `profiler.sh` script actually converts command line arguments to that format.
For instance, `-e alloc` is converted to `event=alloc`, `-f profile.svg`

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>tools.profiler</groupId>
<artifactId>async-profiler</artifactId>
<version>1.8.7</version>
<version>1.8.8</version>
<packaging>jar</packaging>
<name>async-profiler</name>