Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

News: update #3900

Merged
merged 2 commits into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 29 additions & 5 deletions docs/news/HEAD.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ The following parsers have been added:

* TerraformVariables *optlib* by masatake · Pull Request #3684

* PkgConfig *optlib*: new parser
* PkgConfig *optlib*: new parser · Pull Request #3891
* I18nRubyGem *YAML based subparser* · Close #3533

* XRC *libxml*: new parser
* XRC *libxml*: new parser · Pull Request #3897

Changes about parser specific kinds, roles, fields, and extras
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -118,6 +118,7 @@ Changes about parser specific kinds, roles, fields, and extras

Readtags
---------------------------------------------------------------------
* Enhancement: add `-P, --with-psuedo-tags` option.
* Enhancement: add `-A, --absolute-input` and `-C, --canonicalize-input` options.
See :ref:`readtags(1) <readtags(1)>`. for more details.
* Enhancement: add `-d, --debug` option for debugging purpose.
Expand All @@ -134,8 +135,24 @@ Merged pull requests
primary contributor of the pull requests. See git log for more
defatils.

.. generated by ./misc/news.bash pr [v6.0.0]

.. generated by ./misc/news.bash pr [v6.0.0...]

* Pull in the latest subtrees by masatake · Pull Request #3902
* readtags: add --with-psuedo-tags option by masatake · Pull Request #3901
* I18nRubyGem: add a new kind, "locale" by masatake · Pull Request #3899
* Ruby: improve the way of parsing `Class.new(SuperClass)` by masatake · Pull Request #3898
* XML Based Resource System (XRC): new parser by masatake · Pull Request #3897
* I18nRubyGem: new parser by masatake · Pull Request #3895
* docs(man): write about guest parsers by masatake · Pull Request #3892
* Revise the release process by masatake · Pull Request #3894
* PkgConfig: new parser by masatake · Pull Request #3891
* rpmMacros: process areas surrounded by pairs of curly bracket by masatake · Pull Request #3890
* Vera: revise the dataflow of cppGetc -> vStringPut by masatake · Pull Request #3886
* nestlevel: Fix user data alignment by b4n · Pull Request #3883
* Cxx: extract section information from __attribute__((section("SECTION"))) by masatake · Pull Request #3614
* NEWS: merge README.rst and README.md by masatake · Pull Request #3875
* builds-sys/test: enhance check-genfile target by masatake · Pull Request #3882
* various minor fixes by masatake · Pull Request #3880
* GitHub Actions: disable BSD workflows again by masatake · Pull Request #3879
* circleci: use fedora39 by masatake · Pull Request #3878
* misc/news.bash: generalize the script by masatake · Pull Request #3877
Expand Down Expand Up @@ -281,11 +298,17 @@ Merged pull requests
* C++,C: record consteval, constinit, thread_local, and __thread to properties: field by masatake · Pull Request #3602
* HTML: introduce a specialized tokenizer for script areas by masatake · Pull Request #3598


Issues close or partially closed via above pull requests
---------------------------------------------------------------------

.. generated by ./misc/news.bash issue [v6.0.0]
.. generated by misc/news.bash issue [v6.0.0...]

* YAML: extract keys (with scope) for I18n Ruby Gem · Issue #3523
* docs(man): write about using multiple parsers for single input file · Issue #3888
* Write about kind collisions to ctags-faq(7) · Issue #3007
* create annotation tags instead of lightweight tag · Issue #3767
* CPreProcessor: Assertion `c >= 0 && c <= 0xff' failed · Issue #3771
* Convert NEWS.md to NEWS.rst · Issue #3874
* [Question] Defining new regex-based tags with scope defined by built-in `ctags` kinds · Issue #3637
* Warning reported when running make units · Issue #3865
Expand All @@ -298,6 +321,7 @@ Issues close or partially closed via above pull requests
* main: ctags option processing fails if "Language already defined", including ctags --help · Issue #2935
* Markdown: tagging a chapter unexpectedly · Issue #3748
* units.py: support NO_COLOR (https://no-color.org/) · Issue #3688
* Request: filename related functions in readtags expressions · Issue #3168
* C++: fully qualified return type breaks parsing prototypes · Issue #3693
* SQL: Warning: ignoring null tag in ... /src/test/regress/sql/collate.icu.utf8.sql(line: 412) · Issue #3636
* Fortran: Improve handling of case insensitivity · Issue #3668
Expand Down
6 changes: 3 additions & 3 deletions misc/news.bash
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ case $1 in
echo ".. generated by $0 ${args[@]}" "[$FROM..$TO]"
echo
git log ${FROM}..${TO} \
| grep '^[ \t]*[Cc]losed\? *#' \
| sed -ne 's/[[:space:]][Cc]losed\? *#\([0-9]\+\).*/\1/p' | while read N; do
| sed -ne 's/^[[:space:]]*\(Partially\)\?[[:space:]]*\(closed\?\|fix\(ed\)\?\) *#\([0-9]\+\).*/\4 (\1)/Ip' \
| sed -e 's/()//' | while read N; do
issue_title $N
done
done | uniq
fi
;;
(man)
Expand Down