texlive[74764] Master/texmf-dist: siunitx (27mar25)
commits+karl at tug.org
commits+karl at tug.org
Thu Mar 27 20:06:45 CET 2025
Revision: 74764
https://tug.org/svn/texlive?view=revision&revision=74764
Author: karl
Date: 2025-03-27 20:06:45 +0100 (Thu, 27 Mar 2025)
Log Message:
-----------
siunitx (27mar25)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md
trunk/Master/texmf-dist/doc/latex/siunitx/siunitx-code.pdf
trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
trunk/Master/texmf-dist/source/latex/siunitx/siunitx-compound.dtx
trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
trunk/Master/texmf-dist/source/latex/siunitx/siunitx.tex
trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
Modified: trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md 2025-03-27 00:42:27 UTC (rev 74763)
+++ trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md 2025-03-27 19:06:45 UTC (rev 74764)
@@ -7,6 +7,13 @@
## [Unreleased]
+## [v3.4.8] - 2025-03-26
+
+### Fixed
+- Printing of product separator in text mode when options `prefix-mode =
+ combine-exponent` and `product-independent-prefix = true` are active (see
+ issue [\#788](https://github.com/josephwright/siunitx/issues/#788))
+
## [v3.4.7] - 2025-03-17
### Changed
@@ -2261,7 +2268,8 @@
### Added
- First public testing release (as `si`)
-[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.4.7...HEAD
+[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.4.8...HEAD
+[v3.4.8]: https://github.com/josephwright/siunitx/compare/v3.4.7...v3.4.8
[v3.4.7]: https://github.com/josephwright/siunitx/compare/v3.4.6...v3.4.7
[v3.4.6]: https://github.com/josephwright/siunitx/compare/v3.4.5...v3.4.6
[v3.4.5]: https://github.com/josephwright/siunitx/compare/v3.4.4...v3.4.5
Modified: trunk/Master/texmf-dist/doc/latex/siunitx/siunitx-code.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
===================================================================
(Binary files differ)
Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx-compound.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx-compound.dtx 2025-03-27 00:42:27 UTC (rev 74763)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx-compound.dtx 2025-03-27 19:06:45 UTC (rev 74764)
@@ -1,6 +1,6 @@
% \iffalse meta-comment
%
-% File: siunitx-compound.dtx Copyright (C) 2018-2021,2023,2024 Joseph Wright
+% File: siunitx-compound.dtx Copyright (C) 2018-2021,2023-2025 Joseph Wright
%
% It may be distributed and/or modified under the conditions of the
% LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -828,10 +828,10 @@
\seq_put_right:Nn \l_@@_tmp_seq
{ \siunitx_quantity:nn {##1} {#2} }
}
- \seq_use:NVVV \l_@@_tmp_seq
- \l_@@_separator_pair_tl
- \l_@@_separator_tl
- \l_@@_separator_final_tl
+ \seq_use:Nnnn \l_@@_tmp_seq
+ { \@@_print_separator:V \l_@@_separator_pair_tl }
+ { \@@_print_separator:V \l_@@_separator_tl }
+ { \@@_print_separator:V \l_@@_separator_final_tl }
\@@_print_boundary:V \l_@@_boundary_close_tl
}
% \end{macrocode}
Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx 2025-03-27 00:42:27 UTC (rev 74763)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx 2025-03-27 19:06:45 UTC (rev 74764)
@@ -140,7 +140,7 @@
%
% Identify the package and give the over all version information.
% \begin{macrocode}
-\ProvidesExplPackage {siunitx} {2025-03-17} {3.4.7}
+\ProvidesExplPackage {siunitx} {2025-03-26} {3.4.8}
{A comprehensive (SI) units package}
% \end{macrocode}
%
Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx.tex
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx.tex 2025-03-27 00:42:27 UTC (rev 74763)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx.tex 2025-03-27 19:06:45 UTC (rev 74764)
@@ -4,7 +4,7 @@
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
-license or (at your option) any later version. The latest versioncl
+license or (at your option) any later version. The latest version
of this license is in the file
https://www.latex-project.org/lppl.txt
@@ -1749,6 +1749,7 @@
Type &
\multicolumn{1}{l}{Default} \\
\midrule
+ bracket-ambiguous-numbers & Switch & true \\
bracket-negative-numbers & Switch & false \\
digit-group-size & Integer & 3 \\
digit-group-first-size & Integer & 3 \\
Modified: trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty 2025-03-27 00:42:27 UTC (rev 74763)
+++ trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty 2025-03-27 19:06:45 UTC (rev 74764)
@@ -47,7 +47,7 @@
}%
\endinput
}%
-\ProvidesExplPackage {siunitx} {2025-03-17} {3.4.7}
+\ProvidesExplPackage {siunitx} {2025-03-26} {3.4.8}
{A comprehensive (SI) units package}
\msg_new:nnnn { siunitx } { incompatible-package }
{ Package~'#1'~incompatible. }
@@ -4470,10 +4470,10 @@
\seq_put_right:Nn \l__siunitx_compound_tmp_seq
{ \siunitx_quantity:nn {##1} {#2} }
}
- \seq_use:NVVV \l__siunitx_compound_tmp_seq
- \l__siunitx_compound_separator_pair_tl
- \l__siunitx_compound_separator_tl
- \l__siunitx_compound_separator_final_tl
+ \seq_use:Nnnn \l__siunitx_compound_tmp_seq
+ { \__siunitx_compound_print_separator:V \l__siunitx_compound_separator_pair_tl }
+ { \__siunitx_compound_print_separator:V \l__siunitx_compound_separator_tl }
+ { \__siunitx_compound_print_separator:V \l__siunitx_compound_separator_final_tl }
\__siunitx_compound_print_boundary:V \l__siunitx_compound_boundary_close_tl
}
\cs_new_protected:Npn \__siunitx_compound_quantity_auxii:nn #1#2
More information about the tex-live-commits
mailing list.