Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnelson committed Mar 24, 2019
1 parent e71bd22 commit f913791
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog

#### Version 1.0.1 (March 24, 2019)
* Make the `Extractors#csv` factory static.

#### Version 1.0.0
* Initial Release
2 changes: 1 addition & 1 deletion src/main/java/com/cinchapi/etl/Extractors.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public final class Extractors {
* @param file
* @return the {@link Extractor}
*/
public Extractor<Path> csv() {
public static Extractor<Path> csv() {
return file -> {
Verify.thatArgument(file.toFile().exists(),
"Cannot extract dta from {} because it does not exist",
Expand Down

0 comments on commit f913791

Please sign in to comment.