Skip to content

Commit e5a03ab

Browse files
Copyright notice date updates. (#18)
1 parent 6bc0765 commit e5a03ab

18 files changed

Lines changed: 19 additions & 19 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ These tools were implemented with these trade-offs in mind. The code was deliber
245245

246246
* Custom I/O buffer management, including reading entire files into memory.
247247
* Custom hash tables rather than built-in associative arrays.
248-
* Avoiding garbage collection
248+
* Avoiding garbage collection.
249249

250250
A useful aspect of D is that is additional optimization can be made as the need arises. Coding of these tools did utilize a several optimizations that might not have been done in an initial effort. These include:
251251

common/src/getopt_inorder.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This should only be used when retaining order is important. Though minimized, th
1313
cases that don't work as expected, the most important involving option arguments starting
1414
with a dash. See the getoptInorder function comments for specifics.
1515
16-
Copyright (c) 2016, eBay Software Foundation
16+
Copyright (c) 2016-2017, eBay Software Foundation
1717
Initially written by Jon Degenhardt
1818
1919
License: Boost License 1.0 (http://boost.org/LICENSE_1_0.txt)

common/src/tsvutil.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
Utilities used by TSV applications.
33
4-
Copyright (c) 2015-2016, eBay Software Foundation
4+
Copyright (c) 2015-2017, eBay Software Foundation
55
Initially written by Jon Degenhardt
66
77
License: Boost Licence 1.0 (http://boost.org/LICENSE_1_0.txt)

csv2tsv/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Convert comma-separated values data to tab-separated values format (CSV to TSV).",
44
"homepage": "https://github.com/eBay/tsv-utils-dlang",
55
"authors": ["Jon Degenhardt"],
6-
"copyright": "Copyright (c) 2015-2016, eBay Software Foundation",
6+
"copyright": "Copyright (c) 2015-2017, eBay Software Foundation",
77
"license": "BSL-1.0",
88
"targetType": "executable",
99
"configurations": [

csv2tsv/src/csv2tsv.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Convert CSV formatted data to TSV format.
33
44
This program converts comma-separated value data to tab-separated format.
55
6-
Copyright (c) 2016, eBay Software Foundation
6+
Copyright (c) 2016-2017, eBay Software Foundation
77
Initially written by Jon Degenhardt
88
99
License: Boost Licence 1.0 (http://boost.org/LICENSE_1_0.txt)

dub.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "tsv-utils-dlang",
3-
"description": "Command line utilities for tab-separated value files.",
3+
"description": "Command line utilities for tabular data files.",
44
"homepage": "https://github.com/eBay/tsv-utils-dlang",
55
"authors": ["Jon Degenhardt"],
6-
"copyright": "Copyright (c) 2015-2016, eBay Software Foundation",
6+
"copyright": "Copyright (c) 2015-2017, eBay Software Foundation",
77
"license": "BSL-1.0",
88
"targetType": "executable",
99
"#": "NOTE: Add new apps to dub_build.d also.",

number-lines/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Number lines",
44
"homepage": "https://github.com/eBay/tsv-utils-dlang",
55
"authors": ["Jon Degenhardt"],
6-
"copyright": "Copyright (c) 2015-2016, eBay Software Foundation",
6+
"copyright": "Copyright (c) 2015-2017, eBay Software Foundation",
77
"license": "BSL-1.0",
88
"targetType": "executable",
99
"configurations": [

number-lines/src/number-lines.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A simple version of the unix 'nl' program.
44
This program is a simpler version of the unix 'nl' (number lines) program. It reads
55
text from files or standard input and adds a line number to each line.
66
7-
Copyright (c) 2015-2016, eBay Software Foundation
7+
Copyright (c) 2015-2017, eBay Software Foundation
88
Initially written by Jon Degenhardt
99
1010
License: Boost Licence 1.0 (http://boost.org/LICENSE_1_0.txt)

tsv-filter/dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Filter lines in a tab-separated value file.",
44
"homepage": "https://github.com/eBay/tsv-utils-dlang",
55
"authors": ["Jon Degenhardt"],
6-
"copyright": "Copyright (c) 2015-2016, eBay Software Foundation",
6+
"copyright": "Copyright (c) 2015-2017, eBay Software Foundation",
77
"license": "BSL-1.0",
88
"targetType": "executable",
99

tsv-filter/src/tsv-filter.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Command line tool that filters TSV files.
44
This tool filters tab-delimited files based on numeric or string comparisons
55
against specific fields. See the helpText string for details.
66
7-
Copyright (c) 2015-2016, eBay Software Foundation
7+
Copyright (c) 2015-2017, eBay Software Foundation
88
Initially written by Jon Degenhardt
99
1010
License: Boost Licence 1.0 (http://boost.org/LICENSE_1_0.txt)

0 commit comments

Comments
 (0)