Skip to content

Commit

Permalink
Release 1.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
apangin committed Sep 9, 2022
1 parent f9afcaf commit 50fccae
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROFILER_VERSION=1.8.7
PROFILER_VERSION=1.8.8
JATTACH_VERSION=1.5
JAVAC_RELEASE_VERSION=6

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 50fccae

Please sign in to comment.