From 3092d584cc8b70936142081a6393fbc023a1f308 Mon Sep 17 00:00:00 2001 From: ObserverOfTime Date: Fri, 8 Mar 2024 14:49:35 +0200 Subject: [PATCH] build: bump versions and change npm scope --- .github/workflows/publish.yml | 2 +- Cargo.toml | 2 +- Makefile | 2 +- README.md | 4 ++-- package-lock.json | 8 ++++---- package.json | 4 ++-- pyproject.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3cf4096..f929217 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ jobs: npm: uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main with: - package-name: "@muniftanjim/tree-sitter-lua" + package-name: "@tree-sitter-grammars/tree-sitter-lua" secrets: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} crates: diff --git a/Cargo.toml b/Cargo.toml index ed9bb4a..01d7b9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-lua" description = "Lua grammar for tree-sitter" -version = "0.0.19" +version = "0.1.0" license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "lua"] diff --git a/Makefile b/Makefile index ae8a786..639c926 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.0.19 +VERSION := 0.1.0 LANGUAGE_NAME := tree-sitter-lua diff --git a/README.md b/README.md index 2ccb3d0..7588820 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![CI][ci]](https://github.com/tree-sitter-grammars/tree-sitter-lua/actions/workflows/ci.yml) [![discord][discord]](https://discord.gg/w7nTvsVJhm) [![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) -[![npm][npm]](https://www.npmjs.com/package/%40muniftanjim%2Ftree-sitter-lua) +[![npm][npm]](https://www.npmjs.com/package/%40tree-sitter-grammars%2Ftree-sitter-lua) [![crates][crates]](https://crates.io/crates/tree-sitter-lua) Lua grammar for tree-sitter. @@ -25,5 +25,5 @@ The [external scanner](/src/scanner.c) was initially based on these repositories [ci]: https://img.shields.io/github/actions/workflow/status/tree-sitter-grammars/tree-sitter-lua/ci.yml?logo=github&label=CI [discord]: https://img.shields.io/discord/1063097320771698699?logo=discord&label=discord [matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix -[npm]: https://img.shields.io/npm/v/%40muniftanjim%2Ftree-sitter-lua?logo=npm +[npm]: https://img.shields.io/npm/v/%40tree-sitter-grammars%2Ftree-sitter-lua?logo=npm [crates]: https://img.shields.io/crates/v/tree-sitter-lua?logo=rust diff --git a/package-lock.json b/package-lock.json index 420dd0f..bcc8350 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@muniftanjim/tree-sitter-lua", - "version": "0.0.19", + "name": "@tree-sitter-grammars/tree-sitter-lua", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@muniftanjim/tree-sitter-lua", - "version": "0.0.19", + "name": "@tree-sitter-grammars/tree-sitter-lua", + "version": "0.1.0", "license": "MIT", "dependencies": { "node-addon-api": "^7.1.0" diff --git a/package.json b/package.json index b9dafde..e44ce4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@muniftanjim/tree-sitter-lua", - "version": "0.0.19", + "name": "@tree-sitter-grammars/tree-sitter-lua", + "version": "0.1.0", "description": "Lua grammar for tree-sitter", "repository": "tree-sitter-grammars/tree-sitter-lua", "author": "Munif Tanjim (https://muniftanjim.dev)", diff --git a/pyproject.toml b/pyproject.toml index 9056339..7b3f8cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "tree-sitter-lua" description = "Lua grammar for tree-sitter" -version = "0.0.19" +version = "0.1.0" keywords = ["incremental", "parsing", "tree-sitter", "lua"] classifiers = [ "Intended Audience :: Developers",