Skip to content

Commit

Permalink
bump version to 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wtsnjp committed Feb 11, 2025
1 parent 24e13af commit 351a2eb
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/texdoc.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Source: <https://github.com/TeX-Live/texdoc>

## 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 <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.

Expand Down
6 changes: 3 additions & 3 deletions doc/texdoc.tex
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
%#!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}

\title{Texdoc}
\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}

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions script/texdoclib-const.tlu
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.]]

Expand Down
2 changes: 1 addition & 1 deletion script/texdoclib.tlu
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion spec/action/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
EXPECTED
Expand Down
4 changes: 2 additions & 2 deletions spec/support/shared_contexts/version_context.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 351a2eb

Please sign in to comment.