Skip to content

Commit

Permalink
Merge pull request #235 from tree-sitter/release
Browse files Browse the repository at this point in the history
Release version 0.20.2
  • Loading branch information
hendrikvanantwerpen authored Jan 24, 2023
2 parents faad909 + 1c1bb33 commit 5d20856
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish_crate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish on crates.io

on:
push:
tags:
- v*

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Verify publish crate
run: cargo publish --dry-run

- name: Publish crate
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-typescript"
description = "Typescript grammar for the tree-sitter parsing library"
version = "0.20.1"
version = "0.20.2"
authors = ["Max Brunsfeld <[email protected]>"]
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-typescript",
"version": "0.20.1",
"version": "0.20.2",
"description": "Typescript grammar for tree-sitter",
"keywords": [
"parser",
Expand Down

0 comments on commit 5d20856

Please sign in to comment.