diff --git a/CHANGELOG.md b/CHANGELOG.md index b60e871..6d38c15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ## [Unreleased] +## [0.2.0] - 2026-08-25 + ### Changed - **Breaking:** replaced old `Tokenizer` with `UnifiedTokenizer` as the primary tokenizer. Removed `Tokenizer` class, `TokenizerLike` interface export, and `src/core/tokenizer.ts`. `Highlighter` now uses `UnifiedTokenizer` internally. `UnifiedLexer` (extends `Lexer` with markup-aware tokenization) and `UnifiedTokenizer` (single-pipeline classifier with opt-in JS features) are the only exported tokenizer classes. diff --git a/packages/syntax-highlighter/package.json b/packages/syntax-highlighter/package.json index 4bdf2ea..c8156fe 100644 --- a/packages/syntax-highlighter/package.json +++ b/packages/syntax-highlighter/package.json @@ -1,6 +1,6 @@ { "name": "@opentf/syntax-highlighter", - "version": "0.1.0", + "version": "0.2.0", "description": "Modern, renderer-agnostic syntax highlighting with one tokenizer powering browser, HTML/SSR, JSON, and ANSI output.", "type": "module", "types": "./dist/index.d.ts",