From b2f01981a76e3251f5b660378136c248ed106b81 Mon Sep 17 00:00:00 2001 From: ObserverOfTime Date: Wed, 13 Mar 2024 23:41:47 +0200 Subject: [PATCH] build: fix npm package name --- .gitattributes | 1 + Cargo.toml | 2 +- common/common.mak | 2 +- package-lock.json | 8 ++++---- package.json | 4 ++-- pyproject.toml | 2 +- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitattributes b/.gitattributes index a83f69c..b152174 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,3 +12,4 @@ setup.py linguist-generated Package.swift linguist-generated bindings/rust/lib.rs -linguist-generated +bindings/rust/benchmark.rs -linguist-generated diff --git a/Cargo.toml b/Cargo.toml index 4804605..e1df410 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-md" description = "Markdown grammar for tree-sitter" -version = "0.2.0" +version = "0.2.1" license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "markdown"] diff --git a/common/common.mak b/common/common.mak index d50c3b8..401c096 100644 --- a/common/common.mak +++ b/common/common.mak @@ -1,4 +1,4 @@ -VERSION := 0.2.0 +VERSION := 0.2.1 # repository SRC_DIR := src diff --git a/package-lock.json b/package-lock.json index 81ae640..8b0332a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "tree-sitter-markdown", - "version": "0.2.0", + "name": "@tree-sitter-grammars/tree-sitter-markdown", + "version": "0.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "tree-sitter-markdown", - "version": "0.2.0", + "name": "@tree-sitter-grammars/tree-sitter-markdown", + "version": "0.2.1", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 77625ac..aba5d6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "tree-sitter-markdown", - "version": "0.2.0", + "name": "@tree-sitter-grammars/tree-sitter-markdown", + "version": "0.2.1", "description": "Markdown grammar for tree-sitter", "repository": "github:tree-sitter-grammars/tree-sitter-markdown", "author": "MDeiml (https://github.com/MDeiml)", diff --git a/pyproject.toml b/pyproject.toml index 90c4ade..c471c11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "tree-sitter-markdown" description = "Markdown grammar for tree-sitter" -version = "0.2.0" +version = "0.2.1" keywords = ["incremental", "parsing", "tree-sitter", "markdown"] classifiers = [ "Intended Audience :: Developers",