Skip to content

Commit

Permalink
bump version to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wtsnjp committed Feb 2, 2024
1 parent 0a7a7a6 commit 9355681
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 deletions.
10 changes: 8 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ NEWS for Texdoc
===============
(This file public domain.)

Version 4.0.2 (2024-02-02)
--------------------------
- Improve the option parser
- Better locale handling
- Scoring adjustments

Version 4.0.1 (2023-02-27)
--------------------------
- Minor bug fixes for Windows
Expand All @@ -13,9 +19,9 @@ Version 4.0 (2023-02-20)
Release for TeX Live 2023.

Major changes
- Online search feature is added (by Wu Zhenyu):
- Online search feature is added (by Max Chernoff):
users using TL without documentation will be sent to texdoc.org
- Add new action --print-completion (by Max Chernoff):
- Add new action --print-completion (by Wu Zhenyu):
for the moment, only zsh is supported. Contributions welcome.

Minor fixes and tweaks
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.0.1"
PKG_VERSION = "4.0.2"
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-2023 Manuel Pe'gourie'-Gonnard, Takuto Asakura, the TeX Live Team.
Copyright 2008-2024 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-2023 Manuel Pégourié-Gonnard and Takuto Asakura
% Copyright 2008-2024 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.0.1\quad \today}
\date{v4.0.2\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--2023 Manuel Pégourié-Gonnard, Takuto Asakura, the {\TL} Team.
2008--2024 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.0.1'
release_date = '2023-02-27'
version = '4.0.2'
release_date = '2024-02-02'

-- 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 @@ -268,7 +268,7 @@ options = {
}

copyright_msg = [[
Copyright 2008-2023 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team.
Copyright 2008-2024 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 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-2023 Manuel Pégourié-Gonnard, Takuto Asakura, the TeX Live Team.
Copyright 2008-2024 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.0.1" }
let(:release_date) { "2023-02-27" }
let(:version) { "4.0.2" }
let(:release_date) { "2024-02-02" }
end

0 comments on commit 9355681

Please sign in to comment.