edf2csv 0.6.7 → 0.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/CHANGELOG.md +22 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.6.9
|
|
7
|
+
|
|
8
|
+
### Fixed: package-lock.json had been claiming 0.5.51 for fifty-eight releases
|
|
9
|
+
|
|
10
|
+
The lockfile carries the package's version in two places and both had stopped moving. Nothing
|
|
11
|
+
breaks on it — `npm ci` does not read the field, and `npm install` rewrites it — but anyone
|
|
12
|
+
checking out a tag and opening the file is told a version other than the one they checked out.
|
|
13
|
+
|
|
14
|
+
CITATION.cff had exactly this happen, 107 releases of it, and the answer was a test asserting
|
|
15
|
+
it against `package.json`. That test now checks the lockfile in the same breath.
|
|
16
|
+
|
|
17
|
+
## 0.6.8
|
|
18
|
+
|
|
19
|
+
### Fixed: the `--info` table's `OUTPUT` column has three values and the reference listed two
|
|
20
|
+
|
|
21
|
+
`(no samples)` has been printed since 0.4.53, for a channel that declares zero samples per data
|
|
22
|
+
record, and the page enumerating the column said only "the file the channel would land in, or
|
|
23
|
+
`(not selected)` when `--channels` excludes it". A reader meeting the third value had nowhere
|
|
24
|
+
to look it up, and the obvious guess — that it means the same as `(not selected)` — is the one
|
|
25
|
+
0.4.53 exists to contradict: a channel asked for by name and carrying nothing is not a channel
|
|
26
|
+
that went unasked for.
|
|
27
|
+
|
|
6
28
|
## 0.6.7
|
|
7
29
|
|
|
8
30
|
### Fixed: `--info` and `--info --json` listed the same warnings in different orders
|
package/package.json
CHANGED