Skip to content

Commit 80d2c84

Browse files
committed
Bump version
1 parent ce29b5b commit 80d2c84

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ from maven central, e.g:
5050
<dependency>
5151
<groupId>me.bechberger</groupId>
5252
<artifactId>ap-loader-all</artifactId>
53-
<version>3.0-8</version>
53+
<version>3.0-9</version>
5454
</dependency>
5555
```
5656

57-
Others are of course available, see [maven central](https://central.sonatype.com/artifact/me.bechberger/ap-loader-all/3.0-8).
57+
Others are of course available, see [maven central](https://central.sonatype.com/artifact/me.bechberger/ap-loader-all/3.0-9).
5858

5959
You can also use [JBang](https://jbang.dev) to simplify the usage of ap-loader. There are examples in documentation below.
6060

@@ -234,7 +234,7 @@ The latest `all` version can be added via:
234234
<dependency>
235235
<groupId>me.bechberger</groupId>
236236
<artifactId>ap-loader-all</artifactId>
237-
<version>3.0-8</version>
237+
<version>3.0-9</version>
238238
</dependency>
239239
```
240240
@@ -253,11 +253,11 @@ python3 ./bin/releaser.py download 3.0
253253
# build the JAR for the release
254254
# maven might throw warnings, related to the project version setting,
255255
# but the alternative solutions don't work, so we ignore the warning for now
256-
mvn -Dproject.vversion=3.0 -Dproject.subrelease=7 -Dproject.platform=macos package assembly:single
256+
mvn -Dproject.vversion=3.0 -Dproject.subrelease=9 -Dproject.platform=macos package assembly:single
257257
# use it
258-
java -jar target/ap-loader-macos-3.0-8-full.jar ...
258+
java -jar target/ap-loader-macos-3.0-9-full.jar ...
259259
# build the all JAR
260-
mvn -Dproject.vversion=3.0 -Dproject.subrelease=7 -Dproject.platform=all package assembly:single
260+
mvn -Dproject.vversion=3.0 -Dproject.subrelease=9 -Dproject.platform=all package assembly:single
261261
```
262262
263263
Development
@@ -302,7 +302,7 @@ And the following for a new async-profiler release:
302302
Changelog
303303
---------
304304
305-
### Unreleased
305+
### v9
306306
307307
- Fix FlameGraph converter [#22](https://github.com/jvm-profiling-tools/ap-loader/issues/22)
308308

bin/releaser.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,8 @@
1919
from typing import Any, Dict, List, Union, Tuple, Optional
2020
from urllib import request
2121

22-
SUB_VERSION = 8
23-
RELEASE_NOTES = """- Support for [async-profiler 3.0](https://github.com/async-profiler/async-profiler/releases/tag/v3.0)
24-
- Breaking changes with async-profiler 3.0:
25-
- async-profiler 3.0 changed the meaning of the `--lib` option from `--lib path full path to libasyncProfiler.so in the container`
26-
to `-l, --lib prepend library names`, so the `AsyncProfilerLoader` will throw an UnsupportedOperation exception
27-
when using the `--lib` option with a path argument and async-profiler 3.0 or higher
22+
SUB_VERSION = 9
23+
RELEASE_NOTES = """- Fix FlameGraph converter [#22](https://github.com/jvm-profiling-tools/ap-loader/issues/22)
2824
"""
2925

3026
HELP = """

0 commit comments

Comments
 (0)