From da2c6e6ace106708c71124a76f6943679cdab80a Mon Sep 17 00:00:00 2001 From: Ross Blair Date: Tue, 10 Dec 2024 12:24:58 -0600 Subject: [PATCH] rel: 2.0.1 --- CHANGELOG.md | 19 +++++++++++++++++++ deno.json | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..cb02557f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ + + +# 2.0.1 — 2024-12-10 + +## Fixed + +- Improve handling of `.bidsignore` files in the web validator. + Ignores matching directories but not the files they contained could fail to match. + (#113) + +- Resolve issue with parsing headers of NIfTI files with large extensions. + Fixes [issue 126]. + +[issue 126]: https://github.com/bids-standard/bids-validator/issues/126 + +## Infrastructure + +- Adopting [scriv](https://scriv.readthedocs.io/en/latest/) for changelog + management. diff --git a/deno.json b/deno.json index f4c6804d..bd997341 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@bids/validator", - "version": "2.0.1-dev", + "version": "2.0.1", "exports": { ".": "./src/bids-validator.ts", "./main": "./src/main.ts",