Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package texmath for openSUSE:Factory checked 
in at 2025-12-05 16:56:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/texmath (Old)
 and      /work/SRC/openSUSE:Factory/.texmath.new.1939 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "texmath"

Fri Dec  5 16:56:05 2025 rev:70 rq:1321145 version:0.13.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/texmath/texmath.changes  2025-10-10 
17:12:55.078253845 +0200
+++ /work/SRC/openSUSE:Factory/.texmath.new.1939/texmath.changes        
2025-12-05 16:56:59.461273906 +0100
@@ -1,0 +2,12 @@
+Sun Nov 30 16:40:47 UTC 2025 - Peter Simons <[email protected]>
+
+- Update texmath to version 0.13.0.2.
+  texmath (0.13.0.2)
+
+    * Escape ; in typst output (#275).
+
+    * Update tests for latest typst symbols.
+
+    * Require typst-symbols 0.1.9.1.
+
+-------------------------------------------------------------------

Old:
----
  texmath-0.13.0.1.tar.gz

New:
----
  texmath-0.13.0.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ texmath.spec ++++++
--- /var/tmp/diff_new_pack.HjazL0/_old  2025-12-05 16:57:00.253307019 +0100
+++ /var/tmp/diff_new_pack.HjazL0/_new  2025-12-05 16:57:00.257307187 +0100
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           %{pkg_name}
-Version:        0.13.0.1
+Version:        0.13.0.2
 Release:        0
 Summary:        Conversion between math formats
 License:        GPL-2.0-or-later

++++++ texmath-0.13.0.1.tar.gz -> texmath-0.13.0.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/changelog.md 
new/texmath-0.13.0.2/changelog.md
--- old/texmath-0.13.0.1/changelog.md   2001-09-09 03:46:40.000000000 +0200
+++ new/texmath-0.13.0.2/changelog.md   2001-09-09 03:46:40.000000000 +0200
@@ -1,3 +1,11 @@
+texmath (0.13.0.2)
+
+  * Escape ; in typst output (#275).
+
+  * Update tests for latest typst symbols.
+
+  * Require typst-symbols 0.1.9.1.
+
 texmath (0.13.0.1)
 
   * TeX reader: fix parsing of primes (#273).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/src/Text/TeXMath/Writers/Typst.hs 
new/texmath-0.13.0.2/src/Text/TeXMath/Writers/Typst.hs
--- old/texmath-0.13.0.1/src/Text/TeXMath/Writers/Typst.hs      2001-09-09 
03:46:40.000000000 +0200
+++ new/texmath-0.13.0.2/src/Text/TeXMath/Writers/Typst.hs      2001-09-09 
03:46:40.000000000 +0200
@@ -79,6 +79,7 @@
     needsEscape '/' = True
     needsEscape '\\' = True
     needsEscape ',' = True -- #242
+    needsEscape ';' = True -- #275
     needsEscape _ = False
 
 escInQuotes :: Text -> Text
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/test/regression/245b.test 
new/texmath-0.13.0.2/test/regression/245b.test
--- old/texmath-0.13.0.1/test/regression/245b.test      2001-09-09 
03:46:40.000000000 +0200
+++ new/texmath-0.13.0.2/test/regression/245b.test      2001-09-09 
03:46:40.000000000 +0200
@@ -102,9 +102,9 @@
 upright("^\\backprime") x^prime.rev\
 upright("^\\backdprime") x^prime.double.rev\
 upright("^\\backtrprime") x^prime.triple.rev\
-upright("^\\hyphenbullet") x^(⁃)\
+upright("^\\hyphenbullet") x^bullet.hyph\
 upright("^\\ast") x^(*)\
 upright("^\\vysmwhtcircle") x^compose\
 upright("^\\vysmblkcircle") x^circle.filled.small\
-upright("^\\llcorner") x^\⌞\
-upright("^\\ulcorner") x^\⌜\
+upright("^\\llcorner") x^corner.l.b\
+upright("^\\ulcorner") x^corner.l.t\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/test/regression/275.test 
new/texmath-0.13.0.2/test/regression/275.test
--- old/texmath-0.13.0.1/test/regression/275.test       1970-01-01 
01:00:00.000000000 +0100
+++ new/texmath-0.13.0.2/test/regression/275.test       2001-09-09 
03:46:40.000000000 +0200
@@ -0,0 +1,14 @@
+<<< native
+[ EDelimited
+    "{"
+    ""
+    [ Right
+        (EArray
+           [ AlignLeft , AlignLeft ]
+           [ [ [ EIdentifier "a" ] , [ ESymbol Pun ";" ] ]
+           , [ [ EIdentifier "b" ] , [ EIdentifier "c" ] ]
+           ])
+    ]
+]
+>>> typst
+cases(delim: "{", a & \;, b & c)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/test/writer/typst/13.test 
new/texmath-0.13.0.2/test/writer/typst/13.test
--- old/texmath-0.13.0.1/test/writer/typst/13.test      2001-09-09 
03:46:40.000000000 +0200
+++ new/texmath-0.13.0.2/test/writer/typst/13.test      2001-09-09 
03:46:40.000000000 +0200
@@ -54,4 +54,4 @@
     (EGrouped [ EIdentifier "n" , ESymbol Ord "!" ])
 ]
 >>> typst
-zws_p F_q (a_1 \, dots.h \, a_p ; c_1 \, dots.h \, c_q ; z) = sum_(n = 0)^oo 
frac((a_1)_n dots.h.c (a_p)_n, (c_1)_n dots.h.c (c_q)_n) frac(z^n, n !)
+zws_p F_q (a_1 \, dots.h \, a_p \; c_1 \, dots.h \, c_q \; z) = sum_(n = 0)^oo 
frac((a_1)_n dots.h.c (a_p)_n, (c_1)_n dots.h.c (c_q)_n) frac(z^n, n !)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.13.0.1/texmath.cabal 
new/texmath-0.13.0.2/texmath.cabal
--- old/texmath-0.13.0.1/texmath.cabal  2001-09-09 03:46:40.000000000 +0200
+++ new/texmath-0.13.0.2/texmath.cabal  2001-09-09 03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 Name:                texmath
-Version:             0.13.0.1
+Version:             0.13.0.2
 Cabal-Version:       >= 1.10
 Build-type:          Simple
 Synopsis:            Conversion between math formats.
@@ -80,7 +80,7 @@
                          pandoc-types >= 1.20 && < 1.24,
                          mtl >= 2.2.1,
                          text,
-                         typst-symbols >= 0.1.8.1 && < 0.1.9,
+                         typst-symbols >= 0.1.9.1 && < 0.1.10,
                          split
 
     Exposed-modules:     Text.TeXMath,

Reply via email to