Skip to content

Commit a76cace

Browse files
committed
New release version 0.5.6
1 parent ea8b70f commit a76cace

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 0.5.6 (TBD)
1+
### 0.5.6 (October 29, 2024)
2+
* Changed module name to `one.jpro.jmemorybuddy`.
3+
* Changed root package to `one.jpro.jmemorybuddy`.
4+
* Updated Gradle build configuration to publish to Maven Central Sonatype.
25

36
### 0.5.5 (July 11, 2024)
47
* Modularize `JMemoryBuddy` artifact to be in compliance with the Java Platform Module System.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# JMemoryBuddy
2-
[![Build Status](https://travis-ci.com/Sandec/JMemoryBuddy.svg?branch=master)](https://travis-ci.com/Sandec/JMemoryBuddy) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/de.sandec/JMemoryBuddy/badge.svg)](https://maven-badges.herokuapp.com/maven-central/de.sandec/JMemoryBuddy)
2+
[![Build Status](https://travis-ci.com/Sandec/JMemoryBuddy.svg?branch=master)](https://travis-ci.com/Sandec/JMemoryBuddy) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/one.jpro/JMemoryBuddy/badge.svg)](https://maven-badges.herokuapp.com/maven-central/one.jpro/JMemoryBuddy)
33

44
JMemoryBuddy provides an API to unit-test your code for memory leaks.
55
It also provides an API to monitor a running JVM for memory leaks.
@@ -13,17 +13,17 @@ The library is published at MavenCentral
1313
#### Maven
1414
```
1515
<dependency>
16-
<groupId>de.sandec</groupId>
16+
<groupId>one.jpro</groupId>
1717
<artifactId>JMemoryBuddy</artifactId>
18-
<version>0.5.5</version>
18+
<version>0.5.6</version>
1919
<scope>test</scope>
2020
</dependency>
2121
```
2222

2323
#### Gradle
2424
```
2525
dependencies {
26-
compile "de.sandec:JMemoryBuddy:0.5.5"
26+
compile "one.jpro:JMemoryBuddy:0.5.6"
2727
}
2828
```
2929

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
JMEMORYBUDDY_VERSION=0.5.6-SNAPSHOT
1+
JMEMORYBUDDY_VERSION=0.5.6
22

33
MAVEN_CENTRAL_PUBLISH_PLUGIN_VERSION=1.2.0
44
JUNIT_VERSION=5.11.3

0 commit comments

Comments
 (0)