Skip to content

Commit 1b222ae

Browse files
committed
bumped version number as I work on next release
1 parent 5126abb commit 1b222ae

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

TODO.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33

44
## Next
55

6+
+ [ ] utilities should use starting index of 1 instead of zero as humans refer to column 1 when intending to work on the first column
67
+ [ ] csvfind, csvjoin should have an inverted match operation
8+
+ [ ] csv utilities to support integer ranges notation for columns and rows references, E.g. "1,3-4,7" or all
79

810
## Someday, Maybe
911

1012
+ [ ] unify the options vocabulary to work the same between each cli
11-
+ [ ] utilities should use starting index of 1 instead of zero as humans refer to column 1 as first column
13+
+ Need a common approach to column ranges in csvcols, csvfind, csvjoin
14+
+ csv2json, csv2mdtable, csv2xlsx should accept a column and row range option for output
1215
+ [ ] csvfind add filter by row number (helpful when combined with csvcols for snapshotting the middle of a table)
13-
+ [ ] csvfind should be able to search multiple columns by specifying a column range like in csvcols (e.g. 1, 3-4, 7 or all)
1416
+ [ ] csv2json should have an option that will include a row number in JSON blob output
1517
+ [ ] csv2json should have the options to normalize property names in JSON objects
1618
+ camel case

datatools.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
)
3535

3636
const (
37-
Version = "v0.0.7"
37+
Version = "v0.0.8"
3838

3939
LicenseText = `
4040
%s %s

0 commit comments

Comments
 (0)