File tree 2 files changed +18
-5
lines changed
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ simply add this dependency:
40
40
<dependency >
41
41
<groupId >com.github.javasync</groupId >
42
42
<artifactId >streamemo</artifactId >
43
- <version >1.0.0 </version >
43
+ <version >1.0.1 </version >
44
44
</dependency >
45
45
```
46
46
@@ -51,3 +51,16 @@ dependencies {
51
51
compile 'com.github.javasync:streamemo:1.0.0'
52
52
}
53
53
```
54
+
55
+ ## Changelog
56
+
57
+ ### 1.0.1 (August, 2019)
58
+
59
+ Add the ability to close the original stream.
60
+ Now the the ` onClose() ` method of a stream from the ` Supplier.get() `
61
+ will trigger a call to the original Stream's onClose() method.
62
+ Contribution from shollander issue #2 .
63
+
64
+ ### 1.0.0 (June, 2018)
65
+
66
+ First release according to the article "How to Reuse Java Streams" published on DZone at Jun. 12, 18
Original file line number Diff line number Diff line change 44
44
</distributionManagement >
45
45
<properties >
46
46
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
47
- <maven .compiler.source>1.9 </maven .compiler.source>
48
- <maven .compiler.target>1.9 </maven .compiler.target>
47
+ <maven .compiler.source>11 </maven .compiler.source>
48
+ <maven .compiler.target>11 </maven .compiler.target>
49
49
</properties >
50
50
<build >
51
51
<plugins >
91
91
<plugin >
92
92
<groupId >org.apache.maven.plugins</groupId >
93
93
<artifactId >maven-javadoc-plugin</artifactId >
94
- <version >2.9 .1</version >
94
+ <version >3.0 .1</version >
95
95
<executions >
96
96
<execution >
97
97
<id >attach-javadocs</id >
104
104
<plugin >
105
105
<groupId >org.jacoco</groupId >
106
106
<artifactId >jacoco-maven-plugin</artifactId >
107
- <version >0.7.9 </version >
107
+ <version >0.8.2 </version >
108
108
<executions >
109
109
<execution >
110
110
<id >default-prepare-agent</id >
You can’t perform that action at this time.
0 commit comments