Skip to content

Commit 91e2ecb

Browse files
chore: bump v0.7.0
1 parent b72a940 commit 91e2ecb

7 files changed

Lines changed: 39 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,23 @@ and this project adheres to [Conventional Commits](https://www.conventionalcommi
77

88
## [Unreleased]
99

10-
## [0.6.2]
10+
## [0.7.0]
11+
12+
### Added
13+
14+
- **`convert --all` flag**: converts all downloaded titles found in `--input-dir` instead of requiring an explicit `--titles` spec. Scans the input directory for `usc{NN}.xml` files and converts whatever is present — works with partial downloads (e.g., only titles 1, 3, 9, 10).
15+
- **Bulk download for `download --all`**: when downloading all 54 titles, the downloader now fetches a single `xml_uscAll@{releasePoint}.zip` instead of making 54 individual HTTP requests. Falls back to per-title downloads if the bulk zip is unavailable. No CLI changes — same `--all` flag, same output.
1116

1217
### Fixed
1318

1419
- **Spurious root dependency**: removed accidental `"dependencies": { "law2md-monorepo": "link:" }` from root `package.json`
1520

1621
### Changed
1722

23+
- **`.gitignore` cleanup**: removed duplicate patterns, consolidated editor/OS/package-manager sections, fixed a bare comment parsed as a pattern
1824
- **CLAUDE.md reference materials**: replaced local file paths (`docs/reference/uslm/`) with public OLRC URLs for the user guide PDF and schema zip
19-
- **`.gitignore`**: added `docs/reference/` to prevent accidental re-commit of binary reference materials
2025
- **Removed `.gitkeep` files**: `fixtures/expected/.gitkeep` and `fixtures/fragments/.gitkeep` no longer needed
2126

22-
## [0.6.1]
23-
24-
### Changed
25-
26-
- **Bulk download for `download --all`**: when downloading all 54 titles, the downloader now fetches a single `xml_uscAll@{releasePoint}.zip` instead of making 54 individual HTTP requests. Falls back to per-title downloads if the bulk zip is unavailable. No CLI changes — same `--all` flag, same output.
27-
2827
## [0.6.0]
2928

3029
### Changed

packages/cli/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# law2md
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- law2md convert --all now scans --input-dir for whatever usc{NN}.xml
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @law2md/core@0.7.0
13+
- @law2md/usc@0.7.0
14+
315
## 0.6.2
416

517
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "law2md",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "Convert U.S. legislative XML (USLM) to structured Markdown for AI/RAG ingestion",
55
"type": "module",
66
"main": "./dist/index.js",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @law2md/core
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- law2md convert --all now scans --input-dir for whatever usc{NN}.xml
8+
39
## 0.6.2
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@law2md/core",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "Core XML parsing, AST, and Markdown rendering for law2md",
55
"type": "module",
66
"main": "./dist/index.js",

packages/usc/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @law2md/usc
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- law2md convert --all now scans --input-dir for whatever usc{NN}.xml
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @law2md/core@0.7.0
13+
314
## 0.6.2
415

516
### Patch Changes

packages/usc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@law2md/usc",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "U.S. Code-specific element handlers and downloader for law2md",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)