texlive[61597] Master/texmf-dist: siunitx (13jan22)

commits+karl at tug.org commits+karl at tug.org
Thu Jan 13 21:58:44 CET 2022


Revision: 61597
          http://tug.org/svn/texlive?view=revision&revision=61597
Author:   karl
Date:     2022-01-13 21:58:44 +0100 (Thu, 13 Jan 2022)
Log Message:
-----------
siunitx (13jan22)

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-number.dtx
    trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
    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	2022-01-13 20:58:24 UTC (rev 61596)
+++ trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md	2022-01-13 20:58:44 UTC (rev 61597)
@@ -7,8 +7,14 @@
 
 ## [Unreleased]
 
-## [v3.0.40]: 2022-01-12
+## [v3.0.41] - 2022-01-13
 
+### Fixed
+- Rounding to an uncertainty purely in the integer part (see issue
+  [\#568](https://github.com/josephwright/siunitx/issues/568))
+
+## [v3.0.40] - 2022-01-12
+
 ### Changed
 - Remove a deprecated `expl3` function
 
@@ -1654,7 +1660,8 @@
 ### Added
 - First public testing release (as `si`)
 
-[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.0.40...HEAD
+[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.0.41...HEAD
+[v3.0.41]: https://github.com/josephwright/siunitx/compare/v3.0.40...v3.0.41
 [v3.0.40]: https://github.com/josephwright/siunitx/compare/v3.0.39...v3.0.40
 [v3.0.39]: https://github.com/josephwright/siunitx/compare/v3.0.38...v3.0.39
 [v3.0.38]: https://github.com/josephwright/siunitx/compare/v3.0.37...v3.0.38

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-number.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx-number.dtx	2022-01-13 20:58:24 UTC (rev 61596)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx-number.dtx	2022-01-13 20:58:44 UTC (rev 61597)
@@ -2848,7 +2848,11 @@
             \prg_replicate:nn
               {
                 \int_max:nn
-                  { 0 - ( \tl_count:n {#4} - \tl_count:n {#2} - #5 +  1 ) }
+                  {
+                    \tl_if_blank:nTF {#4}
+                      { #5 }
+                      { 0 - ( \tl_count:n {#4} - \tl_count:n {#2} - #5 +  1 ) }
+                  }
                   { 0 }
               }
               { 0 }

Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx	2022-01-13 20:58:24 UTC (rev 61596)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx	2022-01-13 20:58:44 UTC (rev 61597)
@@ -121,7 +121,7 @@
 %
 % Identify the package and give the over all version information.
 %    \begin{macrocode}
-\ProvidesExplPackage {siunitx} {2022-01-12} {3.0.40}
+\ProvidesExplPackage {siunitx} {2022-01-13} {3.0.41}
   {A comprehensive (SI) units package}
 %    \end{macrocode}
 %

Modified: trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty	2022-01-13 20:58:24 UTC (rev 61596)
+++ trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty	2022-01-13 20:58:44 UTC (rev 61597)
@@ -42,7 +42,7 @@
       }%
     \endinput
   }%
-\ProvidesExplPackage {siunitx} {2022-01-12} {3.0.40}
+\ProvidesExplPackage {siunitx} {2022-01-13} {3.0.41}
   {A comprehensive (SI) units package}
 \msg_new:nnnn { siunitx } { incompatible-package }
   { Package~'#1'~incompatible. }
@@ -2974,7 +2974,11 @@
             \prg_replicate:nn
               {
                 \int_max:nn
-                  { 0 - ( \tl_count:n {#4} - \tl_count:n {#2} - #5 +  1 ) }
+                  {
+                    \tl_if_blank:nTF {#4}
+                      { #5 }
+                      { 0 - ( \tl_count:n {#4} - \tl_count:n {#2} - #5 +  1 ) }
+                  }
                   { 0 }
               }
               { 0 }



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