From 3538be45ffea0ad0a784c3c7b2ec0ce5234f94ac Mon Sep 17 00:00:00 2001 From: Zheng Junjie Date: Sun, 5 Nov 2023 15:48:41 +0800 Subject: [PATCH] tag 0.2.0 --- NEWS | 15 +++++++++++++++ configure.ac | 2 +- guix.scm | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index e69de29..37e3e4a 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,15 @@ + -*- org -*- +#+TITLE: Guile-TS NEWS + +Copyright (C) 2023 Zheng Junjie <873216071@qq.com> + +* Changes in 0.2.0 (since 0.1.0) +** New Functionality +*** substring-utf8: new procedure. +** Change +*** ts-parser-parse-string: Supports two arguments. +*** get-ts-language-from-file support TREE_SITTER_GRAMMAR_PATH environment variable. +*** ts-node-childs: change from goop's method to procedure. +** Bug fixes +*** some object will correct run the finalizer. +*** ts-node-{first-child-for-byte,descendant-for-byte-range}: fix no provide named case diff --git a/configure.ac b/configure.ac index bbe110d..960c1c0 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([guile-ts], [0.1.0], [873216071@qq.com], +AC_INIT([guile-ts], [0.2.0], [873216071@qq.com], [guile-ts], [https://github.com/Z572/guile-ts]) AC_CONFIG_SRCDIR([ts/init.c]) diff --git a/guix.scm b/guix.scm index 4110f95..21cd296 100644 --- a/guix.scm +++ b/guix.scm @@ -28,7 +28,7 @@ (package (inherit guile-ts) (name "guile-ts") - (version "0.1.0") + (version "0.2.0") (source (local-file "." "guile-ts"