Skip to content

Commit c1c2d91

Browse files
committed
Bump version
1 parent 6f16a39 commit c1c2d91

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ from maven central, e.g:
4646
<dependency>
4747
<groupId>me.bechberger</groupId>
4848
<artifactId>ap-loader-all</artifactId>
49-
<version>2.9-6</version>
49+
<version>2.9-7</version>
5050
</dependency>
5151
```
5252

53-
Others are of course available, see [maven central](https://central.sonatype.com/artifact/me.bechberger/ap-loader-all/2.9-6).
53+
Others are of course available, see [maven central](https://central.sonatype.com/artifact/me.bechberger/ap-loader-all/2.9-7).
5454

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

@@ -230,7 +230,7 @@ The latest `all` version can be added via:
230230
<dependency>
231231
<groupId>me.bechberger</groupId>
232232
<artifactId>ap-loader-all</artifactId>
233-
<version>2.9-6</version>
233+
<version>2.9-7</version>
234234
</dependency>
235235
```
236236
@@ -249,11 +249,11 @@ python3 ./bin/releaser.py download 2.9
249249
# build the JAR for the release
250250
# maven might throw warnings, related to the project version setting,
251251
# but the alternative solutions don't work, so we ignore the warning for now
252-
mvn -Dproject.vversion=2.9 -Dproject.subrelease=6 -Dproject.platform=macos package assembly:single
252+
mvn -Dproject.vversion=2.9 -Dproject.subrelease=7 -Dproject.platform=macos package assembly:single
253253
# use it
254-
java -jar target/ap-loader-macos-2.9-6-full.jar ...
254+
java -jar target/ap-loader-macos-2.9-7-full.jar ...
255255
# build the all JAR
256-
mvn -Dproject.vversion=2.9 -Dproject.subrelease=6 -Dproject.platform=all package assembly:single
256+
mvn -Dproject.vversion=2.9 -Dproject.subrelease=7 -Dproject.platform=all package assembly:single
257257
```
258258
259259
Development
@@ -298,6 +298,10 @@ And the following for a new async-profiler release:
298298
Changelog
299299
---------
300300
301+
### v7
302+
303+
- Drop dev.dirs:directories dependency #13 (thanks to @jsjant for spotting the potential licensing issue and fixing it in #14)
304+
301305
### v6
302306
303307
- Fix Linux Arm64 release #12 (thanks to @dkrawiec-c for fixing this issue)

bin/releaser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from typing import Any, Dict, List, Union, Tuple, Optional
1818
from urllib import request
1919

20-
SUB_VERSION = 6
21-
RELEASE_NOTES = """- Fix Linux Arm64 release #12 (thanks to @dkrawiec-c for fixing this issue)
20+
SUB_VERSION = 7
21+
RELEASE_NOTES = """- Drop dev.dirs:directories dependency #13 (thanks to @jsjant for spotting the potential licensing issue and fixing it in #14)
2222
"""
2323

2424
HELP = """

0 commit comments

Comments
 (0)