Skip to content

Commit c768ea5

Browse files
committed
release 0.8.1
1 parent a44693d commit c768ea5

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,17 @@ is recommended for better performances on disk operations (detection of physical
1010

1111
## Build status
1212

13-
Current version:
14-
[0.8.0](https://github.com/lecousin/java-framework-core/releases/tag/0.8.0 "Download")
15-
16-
Modules:
17-
* core 0.8.0
18-
[Javadoc](https://www.javadoc.io/doc/net.lecousin/core/0.8.0 "Javadoc")
19-
[Maven Central Repository](http://search.maven.org/#artifactdetails%7Cnet.lecousin%7Ccore%7C0.8.0%7Cjar "Maven")
20-
* log.bridges.commons-logging 0.1.0
21-
[Javadoc](https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.1.0 "Javadoc")
22-
[Maven Central Repository](http://search.maven.org/#artifactdetails%7Cnet.lecousin.framework%7Clog.bridges.commons-logging%7C0.1.0%7Cjar "Maven")
23-
2413
Master: ![build status](https://travis-ci.org/lecousin/java-framework-core.svg?branch=master "Build Status")
2514

2615
Branch 0.8: ![build status](https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.8 "Build Status")
2716

28-
Branch 0.9: ![build status](https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.9 "Build Status")
17+
Modules with current version:
18+
* core 0.8.1
19+
[Javadoc](https://www.javadoc.io/doc/net.lecousin/core/0.8.1 "Javadoc")
20+
[Maven Central Repository](http://search.maven.org/#artifactdetails%7Cnet.lecousin%7Ccore%7C0.8.1%7Cjar "Maven")
21+
* log.bridges.commons-logging 0.1.0
22+
[Javadoc](https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.1.0 "Javadoc")
23+
[Maven Central Repository](http://search.maven.org/#artifactdetails%7Cnet.lecousin.framework%7Clog.bridges.commons-logging%7C0.1.0%7Cjar "Maven")
2924

3025
## Multi-threading
3126

net.lecousin.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.lecousin</groupId>
55
<artifactId>core</artifactId>
6-
<version>0.8.0</version>
6+
<version>0.8.1</version>
77

88
<parent>
99
<groupId>net.lecousin</groupId>

net.lecousin.core/src/main/java/net/lecousin/framework/math/IntegerUnit.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import java.lang.annotation.Target;
77
import java.util.ArrayList;
88

9+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10+
911
import net.lecousin.framework.plugins.ExtensionPoint;
1012
import net.lecousin.framework.plugins.Plugin;
1113

@@ -45,6 +47,7 @@ public static interface Converter extends Plugin {
4547
public static class ConverterRegistry implements ExtensionPoint<Converter> {
4648

4749
/** Constructor. */
50+
@SuppressFBWarnings("ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD")
4851
public ConverterRegistry() {
4952
instance = this;
5053
converters.add(new TimeUnit.Converter());

net.lecousin.framework.log.bridges/commons-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>net.lecousin</groupId>
5959
<artifactId>core</artifactId>
60-
<version>0.8.0</version>
60+
<version>0.8.1</version>
6161
</dependency>
6262
</dependencies>
6363

0 commit comments

Comments
 (0)