Skip to content

Commit f2200c8

Browse files
docs(Common): Normalize version headers to Keep a Changelog format
Replace em-dashes (—) with hyphens (-) in CHANGELOG version headers to comply with the Keep a Changelog specification. Also normalize a single em-dash in FileWatcherProvider.rs comment. This ensures consistent formatting across the CHANGELOG and aligns with the upstream documentation standard.
1 parent bd2e22e commit f2200c8

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to Common (Core Library) are documented here.
44
Format: [Keep a Changelog](https://keepachangelog.com/).
55

6-
## [v2.1] Q2 2026: Full Workbench Lift
6+
## [v2.1] - Q2 2026: Full Workbench Lift
77

88
### Added
99

@@ -22,22 +22,22 @@ Format: [Keep a Changelog](https://keepachangelog.com/).
2222
- 36 new TypeScript declaration files (.d.ts + .d.ts.map) for Workers API
2323
- README expanded: 243 insertions with comprehensive documentation
2424

25-
## [v1.3] Q4 2025: Dependency Maintenance
25+
## [v1.3] - Q4 2025: Dependency Maintenance
2626

2727
### Changed
2828

2929
- @cloudflare/workers-types kept current through Q4
3030
- No source file changes; pure dependency stabilization
3131

32-
## [v1.2] Q3 2025: Full Stack Integration
32+
## [v1.2] - Q3 2025: Full Stack Integration
3333

3434
### Changed
3535

3636
- @cloudflare/workers-types: 4.20240721 → 4.20240925 series
3737
- Documentation styling: 98 CSS lines modified in TypeDoc assets
3838
- Source/Function/Access.ts, Source/Function/Encrypt.ts minor updates
3939

40-
## [v1.1] Q2 2025: Architecture Buildout
40+
## [v1.1] - Q2 2025: Architecture Buildout
4141

4242
### Added
4343

@@ -48,15 +48,15 @@ Format: [Keep a Changelog](https://keepachangelog.com/).
4848

4949
- Source/Function/Access.ts refactored for PascalCase compliance
5050

51-
## [v1.0] Q1 2025: Integration Phase
51+
## [v1.0] - Q1 2025: Integration Phase
5252

5353
### Changed
5454

5555
- CODE_OF_CONDUCT.md updated, README expanded (12 lines)
5656
- Cloudflare workers-types continuous updates
5757
- Maintenance-heavy quarter; no major features
5858

59-
## [v0.2] Q4 2024: Architecture Solidification
59+
## [v0.2] - Q4 2024: Architecture Solidification
6060

6161
### Added
6262

@@ -68,27 +68,27 @@ Format: [Keep a Changelog](https://keepachangelog.com/).
6868
- Source/Interface/*.ts PascalCase conversions
6969
- 146 deletions of old-format declarations, 172 insertions of new format
7070

71-
## [v0.1] Q3 2024: Rapid Development
71+
## [v0.1] - Q3 2024: Rapid Development
7272

7373
### Changed
7474

7575
- Documentation UI assets refactored (icons.js, main.js, style.css)
7676
- @cloudflare/workers-types continuous updates
7777
- Stable quarter; mostly dependency maintenance
7878

79-
## [Common/v0.0.6] 2024-06-30
79+
## [Common/v0.0.6] - 2024-06-30
8080

8181
### Added
8282

8383
- Full Documentation rebuild (TypeDoc): 1,802 insertions in style.css + assets
8484

85-
## [Common/v0.0.5] 2024-06-30
85+
## [Common/v0.0.5] - 2024-06-30
8686

8787
### Added
8888

8989
- 69 files changed, 1,802 insertions (documentation generation)
9090

91-
## [v0.0] Q2 2024: Project Inception
91+
## [v0.0] - Q2 2024: Project Inception
9292

9393
### Added
9494

Source/FileSystem/FileWatcherProvider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub trait FileWatcherProvider: Environment + Send + Sync {
5353
/// * `IsRecursive`: When `true`, observe children recursively.
5454
/// * `Pattern`: Optional glob pattern (e.g. `**/*.ts`). When present,
5555
/// events whose path does not match the compiled pattern
56-
/// are dropped before crossing the IPC boundary this
56+
/// are dropped before crossing the IPC boundary - this
5757
/// is critical for performance under TypeScript-style
5858
/// extensions that register 10+ watchers per activation.
5959
async fn RegisterWatcher(

0 commit comments

Comments
 (0)