From e9aec0d0ba4fa8c1223d774e1c4b2dce328b9a97 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Fri, 2 Dec 2022 10:19:57 +0900 Subject: [PATCH] Version 0.2.0 (#41) Signed-off-by: Masatake YAMATO --- NEWS.md | 9 ++++++++- configure.ac | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 76482bf6..6046f5c7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# Version ??? +# Version 0.2.0 - delete debug output automatically printed when DEBUG is defiend in build-time. @@ -22,6 +22,13 @@ - Use mmap(2) when opening a tags file if fopen() supports "m" mode flag. +- LT_VERSION 2:0:1 + + - extend the API + + - add a constant: TagErrnoFileMaybeTooBig + - add a function: tagsFindPseudoTag + # Version 0.1.0 - propagate internal errors to caller diff --git a/configure.ac b/configure.ac index 75e01022..0da0258a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # -*- Autoconf -*- -AC_INIT(libreadtags, 0.1.0) +AC_INIT(libreadtags, 0.2.0) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([readtags.c]) @@ -27,6 +27,7 @@ AC_PROG_LIBTOOL # # 2:0:1 # introduced TagErrnoFileMayTooBig. +# introduced tagsFindPseudoTag. # AC_SUBST(LT_VERSION, [2:0:1])