Skip to content

Commit 0debf3e

Browse files
committed
Merge branch 'develop'
2 parents 438cf10 + 192ec90 commit 0debf3e

File tree

12 files changed

+35
-10
lines changed

12 files changed

+35
-10
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [0.9.1] - 2024-08-28
11+
12+
### Fixed
13+
14+
- Fix missing javadoc resources
15+
1016
## [0.9.0] - 2024-08-28
1117

1218
This release adds a release command that greatly improves the use of heylogs in automations.
@@ -167,7 +173,8 @@ This release improves extension points and also aligns features of Maven plugin
167173

168174
- Initial release
169175

170-
[Unreleased]: https://github.com/nbbrd/heylogs/compare/v0.9.0...HEAD
176+
[Unreleased]: https://github.com/nbbrd/heylogs/compare/v0.9.1...HEAD
177+
[0.9.1]: https://github.com/nbbrd/heylogs/compare/v0.9.0...v0.9.1
171178
[0.9.0]: https://github.com/nbbrd/heylogs/compare/v0.8.1...v0.9.0
172179
[0.8.1]: https://github.com/nbbrd/heylogs/compare/v0.8.0...v0.8.1
173180
[0.8.0]: https://github.com/nbbrd/heylogs/compare/v0.7.2...v0.8.0

heylogs-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-api</artifactId>

heylogs-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-bom</artifactId>

heylogs-cli/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-cli</artifactId>

heylogs-ext-github/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-ext-github</artifactId>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* Workaround for JavaDoc issues with Lombok.
3+
*/
4+
public class EmptyJavaDoc {
5+
6+
}

heylogs-ext-json/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-ext-json</artifactId>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* Workaround for JavaDoc issues with Lombok.
3+
*/
4+
public class EmptyJavaDoc {
5+
6+
}

heylogs-ext-semver/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-ext-semver</artifactId>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* Workaround for JavaDoc issues with Lombok.
3+
*/
4+
public class EmptyJavaDoc {
5+
6+
}

heylogs-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.nbbrd.heylogs</groupId>
99
<artifactId>heylogs-parent</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.9.1</version>
1111
</parent>
1212

1313
<artifactId>heylogs-maven-plugin</artifactId>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.nbbrd.heylogs</groupId>
88
<artifactId>heylogs-parent</artifactId>
9-
<version>0.9.0</version>
9+
<version>0.9.1</version>
1010
<packaging>pom</packaging>
1111

1212
<name>heylogs</name>
@@ -39,7 +39,7 @@
3939
<properties>
4040
<!-- Java 8+ config -->
4141
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42-
<project.build.outputTimestamp>2024-08-28T13:40:35Z</project.build.outputTimestamp>
42+
<project.build.outputTimestamp>2024-08-28T15:15:37Z</project.build.outputTimestamp>
4343
<maven.compiler.target>1.8</maven.compiler.target>
4444
<maven.compiler.source>1.8</maven.compiler.source>
4545

0 commit comments

Comments
 (0)