edf2csv 0.6.0 → 0.6.1

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.
@@ -3,6 +3,21 @@
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.1
7
+
8
+ ### Changed: the changelog lives at `docs/CHANGELOG.md`
9
+
10
+ Twelve of the repository's thirteen top-level entries are pinned there by something that reads
11
+ nowhere else: GitHub for `README.md`, `LICENSE` and `.github/`, its citation widget for
12
+ `CITATION.cff`, npm for the manifest and its lock, Vercel for `vercel.json`. `CHANGELOG.md` was
13
+ the one free to sit anywhere, so it sits under `docs/` now, moved with `git mv` so its history
14
+ follows it.
15
+
16
+ `files` ships it from the new path and the tarball is the same 61 files, so the only visible
17
+ change is where a consumer finds it: `node_modules/edf2csv/docs/CHANGELOG.md`. Both tests that
18
+ read the file — the one pinning the top-level layout, and the one checking the newest entry
19
+ against `package.json` — follow it there.
20
+
6
21
  ## 0.6.0
7
22
 
8
23
  ### Changed: `--info --json` reports no estimate rather than an estimate of nothing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edf2csv",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
5
5
  "keywords": [
6
6
  "edf",
@@ -49,7 +49,7 @@
49
49
  "dist",
50
50
  "README.md",
51
51
  "LICENSE",
52
- "CHANGELOG.md"
52
+ "docs/CHANGELOG.md"
53
53
  ],
54
54
  "engines": {
55
55
  "node": ">=20.0.0"