diff --git a/scopeql-parser/CHANGELOG.md b/scopeql-parser/CHANGELOG.md new file mode 100644 index 0000000..1b42e39 --- /dev/null +++ b/scopeql-parser/CHANGELOG.md @@ -0,0 +1,15 @@ +# CHANGELOG + +All significant changes to the ScopeQL Parser be documented in this file. + +## Unreleased + +## v0.2.0 (2026-02-13) + +### Breaking Changes + +* No longer recognize `EQUALITY` token since `CREATE EQUALITY INDEX` clause has been merged into `CREATE POINT INDEX`. + +### New Features + +* Recognize `POINT` token for `CREATE POINT INDEX` clause. diff --git a/scopeql-parser/src/tokenizer.rs b/scopeql-parser/src/tokenizer.rs index bce9340..3cd0d3d 100644 --- a/scopeql-parser/src/tokenizer.rs +++ b/scopeql-parser/src/tokenizer.rs @@ -212,8 +212,6 @@ pub enum TokenKind { ELSE, #[token("END", ignore(case))] END, - #[token("EQUALITY", ignore(case))] - EQUALITY, #[token("EXCLUDE", ignore(case))] EXCLUDE, #[token("EXEC", ignore(case))]