From 351a2ebc3937389ea2104ec1ca1cb1af8bd05ef5 Mon Sep 17 00:00:00 2001 From: Takuto Asakura Date: Tue, 11 Feb 2025 16:47:51 +0900 Subject: [PATCH] bump version to 4.1.1 --- NEWS | 7 +++++++ README.md | 2 +- Rakefile | 2 +- doc/texdoc.1.md | 2 +- doc/texdoc.tex | 6 +++--- script/texdoclib-const.tlu | 6 +++--- script/texdoclib.tlu | 2 +- spec/action/version_spec.rb | 2 +- spec/support/shared_contexts/version_context.rb | 4 ++-- 9 files changed, 20 insertions(+), 13 deletions(-) diff --git a/NEWS b/NEWS index 89f7036..f64196b 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,13 @@ NEWS for Texdoc =============== (This file public domain.) +Version 4.1.1 (2025-02-09) +-------------------------- +- New debug category "docfile" +- Improve zsh completion function (by Markus Kurtz) +- Some bug fixes and improvements +- Scoring adjustments + Version 4.1 (2024-03-10) ======================== Release for TeX Live 2024. diff --git a/README.md b/README.md index c528073..abe8e72 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ More specific information, such as the TODO list of this project and some inform ## Copyright and License -Copyright 2008-2024 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. +Copyright 2008-2025 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. This package is distributed under the terms of the GNU General Public License as published by the Free Software Foundation, either [version 3](./COPYING) of the License, or (at your option) any later version. diff --git a/Rakefile b/Rakefile index d147516..7ca1961 100644 --- a/Rakefile +++ b/Rakefile @@ -7,7 +7,7 @@ require 'date' # basics PKG_NAME = "texdoc" -PKG_VERSION = "4.1" +PKG_VERSION = "4.1.1" CTAN_MIRROR = "http://ctan.mirror.rafal.ca/systems/texlive/tlnet" # woking/temporaly dirs diff --git a/doc/texdoc.1.md b/doc/texdoc.1.md index 396b44b..42680f4 100644 --- a/doc/texdoc.1.md +++ b/doc/texdoc.1.md @@ -105,7 +105,7 @@ Source: ## COPYRIGHT -Copyright 2008-2024 Manuel Pe'gourie'-Gonnard, Takuto Asakura, the TeX Live Team. +Copyright 2008-2025 Manuel Pe'gourie'-Gonnard, Takuto Asakura, the TeX Live Team. License: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. diff --git a/doc/texdoc.tex b/doc/texdoc.tex index 231f190..6080db3 100644 --- a/doc/texdoc.tex +++ b/doc/texdoc.tex @@ -1,6 +1,6 @@ %#!texfot xelatex % Texdoc user manual -% Copyright 2008-2024 Manuel Pégourié-Gonnard and Takuto Asakura +% Copyright 2008-2025 Manuel Pégourié-Gonnard and Takuto Asakura % distributed under the terms of GPL v3 or later \documentclass{texdoc-doc} @@ -8,7 +8,7 @@ \subtitle{Find \& view documentation in \TL} \pkgurl{https://tug.org/texdoc/} \author{Manuel Pégourié-Gonnard\and Takuto Asakura} -\date{v4.1\quad \today} +\date{v4.1.1\quad \today} \begin{document} @@ -795,7 +795,7 @@ \section{Licence} \label{sec:licence} The current version of Texdoc program and its documentation are copyright -2008--2024 Manuel Pégourié-Gonnard, Takuto Asakura, the {\TL} Team. +2008--2025 Manuel Pégourié-Gonnard, Takuto Asakura, the {\TL} Team. They are free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/script/texdoclib-const.tlu b/script/texdoclib-const.tlu index 08f1e5e..28fc1fe 100644 --- a/script/texdoclib-const.tlu +++ b/script/texdoclib-const.tlu @@ -22,8 +22,8 @@ end -- progname and version fullname = kpse.find_file('texdoc/texdoclib', 'lua') progname = 'Texdoc' -version = '4.1' -release_date = '2024-03-10' +version = '4.1.1' +release_date = '2025-02-11' -- make sure to update setup_config_from_cl() accordingly -- and set a default value in setup_config_from_defaults() if relevant @@ -280,7 +280,7 @@ options = { } copyright_msg = [[ -Copyright 2008-2024 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. +Copyright 2008-2025 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it.]] diff --git a/script/texdoclib.tlu b/script/texdoclib.tlu index d2c7d89..83bc240 100644 --- a/script/texdoclib.tlu +++ b/script/texdoclib.tlu @@ -1,7 +1,7 @@ -- texdoclib.tlu: the texdoc library --[[ -Copyright 2008-2024 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. +Copyright 2008-2025 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/spec/action/version_spec.rb b/spec/action/version_spec.rb index b1d637d..2eaab8a 100644 --- a/spec/action/version_spec.rb +++ b/spec/action/version_spec.rb @@ -8,7 +8,7 @@ <<~EXPECTED Texdoc #{version} (#{release_date}) - Copyright 2008-2024 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. + Copyright 2008-2025 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. EXPECTED diff --git a/spec/support/shared_contexts/version_context.rb b/spec/support/shared_contexts/version_context.rb index ab57dd2..89a9334 100644 --- a/spec/support/shared_contexts/version_context.rb +++ b/spec/support/shared_contexts/version_context.rb @@ -1,4 +1,4 @@ shared_context "version" do - let(:version) { "4.1" } - let(:release_date) { "2024-03-10" } + let(:version) { "4.1.1" } + let(:release_date) { "2025-02-11" } end