Skip to content

Commit f913791

Browse files
committed
add changelog
1 parent e71bd22 commit f913791

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
22

3+
#### Version 1.0.1 (March 24, 2019)
4+
* Make the `Extractors#csv` factory static.
5+
36
#### Version 1.0.0
47
* Initial Release

src/main/java/com/cinchapi/etl/Extractors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class Extractors {
4242
* @param file
4343
* @return the {@link Extractor}
4444
*/
45-
public Extractor<Path> csv() {
45+
public static Extractor<Path> csv() {
4646
return file -> {
4747
Verify.thatArgument(file.toFile().exists(),
4848
"Cannot extract dta from {} because it does not exist",

0 commit comments

Comments
 (0)