iiegn commited on
Commit
95bec95
·
verified ·
1 Parent(s): 783e782

Release v2.1.0

Browse files
Files changed (3) hide show
  1. CHANGELOG.md +28 -0
  2. RELEASE.md +1 -0
  3. pyproject.toml +1 -1
CHANGELOG.md CHANGED
@@ -5,6 +5,34 @@ All notable changes to the Universal Dependencies HuggingFace dataset loader wil
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ## [2.0.2] - 2026-02-02
9
 
10
  ### Added
 
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
8
+ ## [2.1.0] - 2026-02-18
9
+
10
+ ### Added
11
+
12
+ - **CLARIN Snapshot Pipeline**
13
+ - Added snapshot-first UD fetch workflow via `tools/01_fetch_ud_snapshot.sh`
14
+ - Added shared release-handle mapping in `tools/etc/ud_release_handles.tsv`
15
+
16
+ - **Validation UX**
17
+ - `tools/05_validate_parquet.py` now reports how many treebanks are ignored due to `tools/blocked_treebanks.yaml`
18
+ - Added `--blocked-treebanks` option to validator wrapper for explicit override
19
+
20
+ ### Changed
21
+
22
+ - **Version Flag Standardization**
23
+ - Unified version selection across the full tools pipeline on `--ud-ver`
24
+ - `00/01` scripts keep `--rev` as backward-compatible aliases
25
+
26
+ - **Flag-Driven Pipeline**
27
+ - `tools/02_generate_metadata.py`, `tools/03_generate_README.py`, `tools/04_generate_parquet.py`, and `tools/05_validate_parquet.py` now support explicit `--ud-ver` workflows with optional `.env`
28
+
29
+ - **Metadata and Tooling Robustness**
30
+ - `tools/02_generate_metadata.py` now derives `genus` by UD version rule:
31
+ - pre-2.15: parsed from `family` (e.g., `Afro-Asiatic, Semitic`)
32
+ - 2.15+: read from dedicated `genus` field
33
+ - Improved path handling and wrapper consistency across `tools/`
34
+ - Updated `tools/README.md` and `ADDING_NEW_UD_VERSION.md` for the CLARIN snapshot + flag-driven workflow
35
+
36
  ## [2.0.2] - 2026-02-02
37
 
38
  ### Added
RELEASE.md CHANGED
@@ -463,6 +463,7 @@ git push origin v2.1.1
463
 
464
  | Version | Date | Type | Highlights |
465
  |---------|------|------|------------|
 
466
  | v2.0.0 | 2025-01 | Major | Parquet format, no Python script, external helpers |
467
  | v1.0.0 | 2024-XX | Major | Initial Python script loader |
468
 
 
463
 
464
  | Version | Date | Type | Highlights |
465
  |---------|------|------|------------|
466
+ | v2.1.0 | 2026-02 | Minor | CLARIN snapshot pipeline, flag-driven `--ud-ver` workflow, validation blocked-treebank ignored count |
467
  | v2.0.0 | 2025-01 | Major | Parquet format, no Python script, external helpers |
468
  | v1.0.0 | 2024-XX | Major | Initial Python script loader |
469
 
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [project]
2
  name = "universal-dependencies"
3
- version = "2.0.2"
4
  description = "UD Dependencies Data Set"
5
  readme = "README.md"
6
  requires-python = ">=3.12"
 
1
  [project]
2
  name = "universal-dependencies"
3
+ version = "2.1.0"
4
  description = "UD Dependencies Data Set"
5
  readme = "README.md"
6
  requires-python = ">=3.12"