From 869dff3ceb8823ca4b17ca33b663667c8e41e8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Tue, 14 Mar 2023 10:58:34 +0100 Subject: [PATCH] Release v0.1.0 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- package.json | 8 ++++++-- 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5f005ba --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## [v0.1.0](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.1.0) (2023-03-14) + +Initial release. diff --git a/Cargo.toml b/Cargo.toml index ff7ee26..6d84279 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree-sitter-elixir" -description = "elixir grammar for the tree-sitter parsing library" +description = "Elixir grammar for the tree-sitter parsing library" version = "0.1.0" keywords = ["incremental", "parsing", "elixir"] categories = ["parsing", "text-editors"] diff --git a/package.json b/package.json index 6bbe27d..81d3ac6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tree-sitter-elixir", "version": "0.1.0", - "description": "Elixir grammar for tree-sitter", + "description": "Elixir grammar for the tree-sitter parsing library", "main": "bindings/node", "keywords": [ "parser", @@ -9,12 +9,16 @@ "elixir", "tree-sitter" ], + "license": "Apache-2.0", + "repository": { + "type": "git", + "url": "https://github.com/elixir-lang/tree-sitter-elixir.git" + }, "scripts": { "test": "tree-sitter test", "format": "prettier --trailing-comma es5 --write grammar.js", "format-check": "prettier --trailing-comma es5 --check grammar.js" }, - "license": "Apache-2.0", "dependencies": { "nan": "^2.15.0" },