From a16bef1b0a978fd0cbc88b3ad0887cbc08c07a1a Mon Sep 17 00:00:00 2001 From: Takuto ASAKURA Date: Thu, 20 May 2021 22:43:33 +0900 Subject: [PATCH] bump version to 3.3.1 --- NEWS | 7 +++++++ Rakefile | 2 +- doc/texdoc.tex | 2 +- script/texdoclib-const.tlu | 4 ++-- spec/support/shared_contexts/version_context.rb | 4 ++-- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 8372028..c08e6c8 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,13 @@ NEWS for texdoc =============== (This file public domain.) +Version 3.3.1 +------------- +- Support non-ascii username on Windows (patch by A. Kakuto) +- Better support for multiple doc trees +- Alias adjustments +- Documentation tweaks + Version 3.3 (TeX Live 2021) =========================== - Show all possible config files for -vf diff --git a/Rakefile b/Rakefile index 292d4d5..73b4fae 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require 'optparse' require 'date' # basics -TEXDOC_VERSION = "3.3" +TEXDOC_VERSION = "3.3.1" PKG_NAME = "texdoc-#{TEXDOC_VERSION}" CTAN_MIRROR = "http://ctan.mirror.rafal.ca/systems/texlive/tlnet" diff --git a/doc/texdoc.tex b/doc/texdoc.tex index 6a9b96d..528eda1 100644 --- a/doc/texdoc.tex +++ b/doc/texdoc.tex @@ -8,7 +8,7 @@ \subtitle{Find \& view documentation in \TL} \pkgurl{https://tug.org/texdoc/} \author{Manuel Pégourié-Gonnard\and Takuto Asakura} -\date{v3.3\quad \today} +\date{v3.3.1\quad \today} \begin{document} diff --git a/script/texdoclib-const.tlu b/script/texdoclib-const.tlu index aef88a0..7da64d3 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 = '3.3' -release_date = '2021-03-17' +version = '3.3.1' +release_date = '2021-05-20' -- make sure to update setup_config_from_cl() accordingly -- and set a default value in setup_config_from_defaults() if relevant diff --git a/spec/support/shared_contexts/version_context.rb b/spec/support/shared_contexts/version_context.rb index acde11e..f17d62e 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) { "3.3" } - let(:release_date) { "2021-03-17" } + let(:version) { "3.3.1" } + let(:release_date) { "2021-05-20" } end