From 3b18a91993593bc09bf78133ec708e87c112e582 Mon Sep 17 00:00:00 2001 From: Nathan Gendron Date: Fri, 13 Jun 2025 15:45:02 -0400 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=94=96=20v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7390a2d..0460fd4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@coderabbitai/ast-grep-langs", - "version": "0.0.0", + "version": "1.0.0", "description": " Exports all first-party ast-grep languages", "keywords": [ "ast-grep" From 925e9b62cd584418ad667c52b2d73ecf8377a8fe Mon Sep 17 00:00:00 2001 From: Nathan Gendron Date: Fri, 13 Jun 2025 15:48:55 -0400 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog=20to=20v1?= =?UTF-8?q?.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57d8c4c..4371609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com) and this p ### Added -- A `Lang` enum with the names of all first-party languages. -- A `langs` object with all first-party languages. - ### Changed ### Deprecated @@ -21,6 +18,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com) and this p ### Security +## [1.0.0] - 2025-06-13 + +### Added + +- A `Lang` enum with the names of all first-party languages. +- A `langs` object with all first-party languages. + ## Types of changes - `Added` for new features. @@ -29,3 +33,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com) and this p - `Removed` for now removed features. - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. + +[Unreleased]: https://github.com/coderabbitai/ast-grep-langs/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/coderabbitai/ast-grep-langs/releases/tag/v1.0.0 From 23536a07fb36adc02f09a300564edc2256b05f07 Mon Sep 17 00:00:00 2001 From: Nathan Gendron Date: Fri, 13 Jun 2025 15:49:21 -0400 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=93=9D=20Add=20`@ts-expect-error`=20t?= =?UTF-8?q?o=20usage=20instructions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6c09e14..98fd40d 100644 --- a/README.md +++ b/README.md @@ -16,5 +16,7 @@ pnpm i @coderabbitai/ast-grep-langs @ast-grep/napi import { registerDynamicLanguage } from "@ast-grep/napi" import { langs } from "@coderabbitai/ast-grep-langs" +// @ts-expect-error Type `StaticLangRegistration` is missing the following +// properties from type `LangRegistration`: `libraryPath`, `extensions`. registerDynamicLanguage(langs) ```