texlive[60096] Master/texmf-dist: texplate (27jul21)

commits+karl at tug.org commits+karl at tug.org
Tue Jul 27 22:36:53 CEST 2021


Revision: 60096
          http://tug.org/svn/texlive?view=revision&revision=60096
Author:   karl
Date:     2021-07-27 22:36:53 +0200 (Tue, 27 Jul 2021)
Log Message:
-----------
texplate (27jul21)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/support/texplate/README.md
    trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
    trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex
    trunk/Master/texmf-dist/scripts/texplate/texplate.jar
    trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt

Modified: trunk/Master/texmf-dist/doc/support/texplate/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/support/texplate/README.md	2021-07-27 20:36:31 UTC (rev 60095)
+++ trunk/Master/texmf-dist/doc/support/texplate/README.md	2021-07-27 20:36:53 UTC (rev 60096)
@@ -22,7 +22,7 @@
                              \ \_\                              
                               \/_/                              
 
-TeXplate 1.0.3, a document structure creation tool
+TeXplate 1.0.4, a document structure creation tool
 Copyright (c) 2020, Island of TeX
 All rights reserved.
 
@@ -85,7 +85,7 @@
                              \ \_\                              
                               \/_/                              
 
-TeXplate 1.0.3, a document structure creation tool
+TeXplate 1.0.4, a document structure creation tool
 Copyright (c) 2020, Island of TeX
 All rights reserved.
 

Modified: trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex
===================================================================
--- trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex	2021-07-27 20:36:31 UTC (rev 60095)
+++ trunk/Master/texmf-dist/doc/support/texplate/texplate-manual.tex	2021-07-27 20:36:53 UTC (rev 60096)
@@ -17,7 +17,7 @@
 \newcommand{\shortopt}[1]{{\ttfamily-#1}}
 \newcommand{\longopt}[1]{{\ttfamily{-}{-}#1}}
 \newcommand{\macro}[1]{{\ttfamily\textbackslash#1}}
-\newcommand{\texplateversion}{1.0.3}
+\newcommand{\texplateversion}{1.0.4}
 
 \title{A gentle introduction to \texplate:\\ a document structure creation tool}
 \author{Island of \TeX}
@@ -417,7 +417,7 @@
 \item When running \texplate, this is the expected output to be displayed in the command line (note that the layout is slightly modified due to space constraints in this user manual):
 
 \begin{code}
-TeXplate 1.0.3, a document structure creation tool
+TeXplate 1.0.4, a document structure creation tool
 Copyright (c) 2020, Island of TeX
 All rights reserved.
 
@@ -624,8 +624,16 @@
 
 \chapter*{Changelog}
 
-\section*{1.0.3 (current)}
+\section*{1.0.4 (current)}
 
+\subsection*{Fixed}
+
+\begin{itemize}
+\item Resolve outdated dependency with vulnerability.
+\end{itemize}
+
+\section*{1.0.3 (2020-08-07)}
+
 \subsection*{Added}
 
 \begin{itemize}

Modified: trunk/Master/texmf-dist/scripts/texplate/texplate.jar
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt
===================================================================
--- trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt	2021-07-27 20:36:31 UTC (rev 60095)
+++ trunk/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/model/handlers/BooleanHandler.kt	2021-07-27 20:36:53 UTC (rev 60096)
@@ -15,6 +15,6 @@
      * @return A list.
      */
     override fun apply(string: String?): Any? {
-        return listOf("true", "1", "yes").contains(string!!.toLowerCase())
+        return listOf("true", "1", "yes").contains(string!!.lowercase())
     }
 }



More information about the tex-live-commits mailing list.