Hello community,

here is the log from the commit of package texmath for openSUSE:Factory checked 
in at 2020-03-09 14:17:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/texmath (Old)
 and      /work/SRC/openSUSE:Factory/.texmath.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "texmath"

Mon Mar  9 14:17:15 2020 rev:33 rq:780042 version:0.12.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/texmath/texmath.changes  2019-12-27 
13:59:41.484841617 +0100
+++ /work/SRC/openSUSE:Factory/.texmath.new.26092/texmath.changes       
2020-03-09 14:17:18.590661883 +0100
@@ -1,0 +2,9 @@
+Thu Feb 27 14:17:03 UTC 2020 - psim...@suse.com
+
+- Update texmath to version 0.12.0.1.
+  texmath (0.12.0.1)
+
+    * OMML writer: Fix overline and accent rendering (#152).
+    * OMML reader: Fix dropped arrows (#153). Add tests.
+
+-------------------------------------------------------------------

Old:
----
  texmath-0.12.tar.gz

New:
----
  texmath-0.12.0.1.tar.gz

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

Other differences:
------------------
++++++ texmath.spec ++++++
--- /var/tmp/diff_new_pack.FrePfC/_old  2020-03-09 14:17:19.518662495 +0100
+++ /var/tmp/diff_new_pack.FrePfC/_new  2020-03-09 14:17:19.534662506 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package texmath
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name texmath
 %bcond_with tests
 Name:           %{pkg_name}
-Version:        0.12
+Version:        0.12.0.1
 Release:        0
 Summary:        Conversion between formats used to represent mathematics
 License:        GPL-2.0-or-later

++++++ texmath-0.12.tar.gz -> texmath-0.12.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/changelog new/texmath-0.12.0.1/changelog
--- old/texmath-0.12/changelog  2019-11-12 20:07:47.000000000 +0100
+++ new/texmath-0.12.0.1/changelog      2020-02-15 06:54:18.000000000 +0100
@@ -1,3 +1,8 @@
+texmath (0.12.0.1)
+
+  * OMML writer: Fix overline and accent rendering (#152).
+  * OMML reader: Fix dropped arrows (#153). Add tests.
+
 texmath (0.12)
 
   * Use Text instead of String in data types and functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/src/Text/TeXMath/Readers/OMML.hs 
new/texmath-0.12.0.1/src/Text/TeXMath/Readers/OMML.hs
--- old/texmath-0.12/src/Text/TeXMath/Readers/OMML.hs   2019-11-12 
20:07:47.000000000 +0100
+++ new/texmath-0.12.0.1/src/Text/TeXMath/Readers/OMML.hs       2020-02-14 
19:06:48.000000000 +0100
@@ -319,6 +319,9 @@
       pos = gPr >>=
             filterChildName (hasElemName "m" "pos") >>=
             findAttrBy (hasElemName "m" "val")
+      justif = gPr >>=
+               filterChildName (hasElemName "m" "vertJC") >>=
+               findAttrBy (hasElemName "m" "val")
   baseExp <- filterChildName (hasElemName "m" "e") element >>=
              elemToBase
   case pos of
@@ -327,14 +330,19 @@
             Just (c:_) -> T.singleton c
             _           -> "\65079"   -- default to overbrace
       in
-       return [EOver False baseExp (ESymbol TOver chr')]
-    Just "bot" ->
+       return $
+         case justif of
+           Just "top" -> [EUnder False (ESymbol TOver chr') baseExp]
+           _ -> [EOver False baseExp (ESymbol TOver chr')]
+    _ -> -- bot is default
       let chr' = case chr of
             Just (c:_) -> T.singleton c
             _           -> "\65080"   -- default to underbrace
       in
-       return [EUnder False baseExp (ESymbol TUnder chr')]
-    _          -> Nothing
+       return $
+         case justif of
+           Just "top" -> [EUnder False baseExp (ESymbol TUnder chr')]
+           _ -> [EOver False (ESymbol TUnder chr') baseExp]
 elemToExps' element | isElem "m" "limLow" element = do
   baseExp <- filterChildName (hasElemName "m" "e") element
           >>= elemToBase
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/src/Text/TeXMath/Writers/OMML.hs 
new/texmath-0.12.0.1/src/Text/TeXMath/Writers/OMML.hs
--- old/texmath-0.12/src/Text/TeXMath/Writers/OMML.hs   2019-11-12 
20:07:47.000000000 +0100
+++ new/texmath-0.12.0.1/src/Text/TeXMath/Writers/OMML.hs       2020-01-27 
16:53:10.000000000 +0100
@@ -221,11 +221,11 @@
      | n > 1.8               -> [str props "\x2001\x2001"]
      | otherwise             -> [str props "\x200B"]
        -- this is how the xslt sheet handles all spaces
-   EUnder _ x (ESymbol _ (T.unpack -> [c])) | isBarChar c ->
+   EUnder _ x (ESymbol TUnder t) | T.all isBarChar t ->
                        [mnode "bar" [ mnode "barPr" $
                                         mnodeA "pos" "bot" ()
                                     , mnode "e" $ showExp props x ]]
-   EOver _ x (ESymbol _ (T.unpack -> [c])) | isBarChar c ->
+   EOver _ x (ESymbol TOver t) | T.all isBarChar t ->
                        [mnode "bar" [ mnode "barPr" $
                                         mnodeA "pos" "top" ()
                                     , mnode "e" $ showExp props x ]]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/readers/omml/153a.native 
new/texmath-0.12.0.1/tests/readers/omml/153a.native
--- old/texmath-0.12/tests/readers/omml/153a.native     1970-01-01 
01:00:00.000000000 +0100
+++ new/texmath-0.12.0.1/tests/readers/omml/153a.native 2020-02-15 
06:47:05.000000000 +0100
@@ -0,0 +1 @@
+[EIdentifier "A",EOver False (ESymbol TUnder "\8594") (EText TextNormal 
"yields"),EIdentifier "B"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/readers/omml/153b.native 
new/texmath-0.12.0.1/tests/readers/omml/153b.native
--- old/texmath-0.12/tests/readers/omml/153b.native     1970-01-01 
01:00:00.000000000 +0100
+++ new/texmath-0.12.0.1/tests/readers/omml/153b.native 2020-02-15 
06:47:24.000000000 +0100
@@ -0,0 +1 @@
+[EIdentifier "A",EOver False (ESymbol TUnder "\8594") (ESymbol Ord 
"\8710"),EIdentifier "B"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/readers/omml/153c.native 
new/texmath-0.12.0.1/tests/readers/omml/153c.native
--- old/texmath-0.12/tests/readers/omml/153c.native     1970-01-01 
01:00:00.000000000 +0100
+++ new/texmath-0.12.0.1/tests/readers/omml/153c.native 2020-02-15 
06:47:31.000000000 +0100
@@ -0,0 +1 @@
+[EIdentifier "A",EOver False (ESymbol TUnder "\8658") (EIdentifier 
"f"),EIdentifier "B"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/src/153a.omml 
new/texmath-0.12.0.1/tests/src/153a.omml
--- old/texmath-0.12/tests/src/153a.omml        1970-01-01 01:00:00.000000000 
+0100
+++ new/texmath-0.12.0.1/tests/src/153a.omml    2020-02-15 06:44:31.000000000 
+0100
@@ -0,0 +1,55 @@
+<m:oMathPara>
+  <m:oMath>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math"
+        w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>A</m:t>
+    </m:r>
+    <m:box>
+      <m:boxPr>
+        <m:opEmu m:val="1" />
+        <m:ctrlPr>
+          <w:rPr>
+            <w:rFonts w:ascii="Cambria Math"
+            w:hAnsi="Cambria Math" />
+            <w:i />
+          </w:rPr>
+        </m:ctrlPr>
+      </m:boxPr>
+      <m:e>
+        <m:groupChr>
+          <m:groupChrPr>
+            <m:chr m:val="→" />
+            <m:vertJc m:val="bot" />
+            <m:ctrlPr>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+                <w:i />
+              </w:rPr>
+            </m:ctrlPr>
+          </m:groupChrPr>
+          <m:e>
+            <m:r>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+              </w:rPr>
+              <m:t>yields</m:t>
+            </m:r>
+          </m:e>
+        </m:groupChr>
+      </m:e>
+    </m:box>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math"
+        w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>B</m:t>
+    </m:r>
+  </m:oMath>
+</m:oMathPara>
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/src/153b.omml 
new/texmath-0.12.0.1/tests/src/153b.omml
--- old/texmath-0.12/tests/src/153b.omml        1970-01-01 01:00:00.000000000 
+0100
+++ new/texmath-0.12.0.1/tests/src/153b.omml    2020-02-15 06:44:31.000000000 
+0100
@@ -0,0 +1,55 @@
+<m:oMathPara>
+  <m:oMath>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math"
+        w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>A</m:t>
+    </m:r>
+    <m:box>
+      <m:boxPr>
+        <m:opEmu m:val="1" />
+        <m:ctrlPr>
+          <w:rPr>
+            <w:rFonts w:ascii="Cambria Math"
+            w:hAnsi="Cambria Math" />
+            <w:i />
+          </w:rPr>
+        </m:ctrlPr>
+      </m:boxPr>
+      <m:e>
+        <m:groupChr>
+          <m:groupChrPr>
+            <m:chr m:val="→" />
+            <m:vertJc m:val="bot" />
+            <m:ctrlPr>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+                <w:i />
+              </w:rPr>
+            </m:ctrlPr>
+          </m:groupChrPr>
+          <m:e>
+            <m:r>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+              </w:rPr>
+              <m:t>∆</m:t>
+            </m:r>
+          </m:e>
+        </m:groupChr>
+      </m:e>
+    </m:box>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math"
+        w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>B</m:t>
+    </m:r>
+  </m:oMath>
+</m:oMathPara>
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/src/153c.omml 
new/texmath-0.12.0.1/tests/src/153c.omml
--- old/texmath-0.12/tests/src/153c.omml        1970-01-01 01:00:00.000000000 
+0100
+++ new/texmath-0.12.0.1/tests/src/153c.omml    2020-02-15 06:44:31.000000000 
+0100
@@ -0,0 +1,52 @@
+<m:oMathPara>
+  <m:oMath>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>A</m:t>
+    </m:r>
+    <m:box>
+      <m:boxPr>
+        <m:opEmu m:val="1" />
+        <m:ctrlPr>
+          <w:rPr>
+            <w:rFonts w:ascii="Cambria Math"
+            w:hAnsi="Cambria Math" />
+            <w:i />
+          </w:rPr>
+        </m:ctrlPr>
+      </m:boxPr>
+      <m:e>
+        <m:groupChr>
+          <m:groupChrPr>
+            <m:chr m:val="⇒" />
+            <m:vertJc m:val="bot" />
+            <m:ctrlPr>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+                <w:i />
+              </w:rPr>
+            </m:ctrlPr>
+          </m:groupChrPr>
+          <m:e>
+            <m:r>
+              <w:rPr>
+                <w:rFonts w:ascii="Cambria Math"
+                w:hAnsi="Cambria Math" />
+              </w:rPr>
+              <m:t>f</m:t>
+            </m:r>
+          </m:e>
+        </m:groupChr>
+      </m:e>
+    </m:box>
+    <m:r>
+      <w:rPr>
+        <w:rFonts w:ascii="Cambria Math" w:hAnsi="Cambria Math" />
+      </w:rPr>
+      <m:t>B</m:t>
+    </m:r>
+  </m:oMath>
+</m:oMathPara>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/08.omml 
new/texmath-0.12.0.1/tests/writers/08.omml
--- old/texmath-0.12/tests/writers/08.omml      2019-09-13 06:49:50.000000000 
+0200
+++ new/texmath-0.12.0.1/tests/writers/08.omml  2020-02-14 18:22:06.000000000 
+0100
@@ -7,16 +7,16 @@
     <m:r>
       <m:t>|</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="‾" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>z</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:r>
       <m:t>|</m:t>
     </m:r>
@@ -41,16 +41,16 @@
     <m:r>
       <m:t>(</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="‾" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>z</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:sSup>
       <m:e>
         <m:r>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents1.omml 
new/texmath-0.12.0.1/tests/writers/accents1.omml
--- old/texmath-0.12/tests/writers/accents1.omml        2019-09-13 
06:49:47.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents1.omml    2020-02-14 
18:22:04.000000000 +0100
@@ -90,16 +90,16 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="¯" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:acc>
             <m:accPr>
               <m:chr m:val="´" />
@@ -210,16 +210,16 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="‾" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:acc>
             <m:accPr>
               <m:chr m:val="⃛" />
@@ -477,16 +477,18 @@
               </m:r>
             </m:lim>
           </m:limUpp>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:limUpp>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limUpp>
           <m:limUpp>
             <m:e>
               <m:r>
@@ -615,16 +617,18 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:limUpp>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limUpp>
           <m:acc>
             <m:accPr>
               <m:chr m:val="⃛" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents2.omml 
new/texmath-0.12.0.1/tests/writers/accents2.omml
--- old/texmath-0.12/tests/writers/accents2.omml        2019-09-13 
06:49:49.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents2.omml    2020-02-14 
18:22:06.000000000 +0100
@@ -90,16 +90,16 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="¯" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:acc>
             <m:accPr>
               <m:chr m:val="´" />
@@ -210,16 +210,16 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="‾" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:acc>
             <m:accPr>
               <m:chr m:val="⃛" />
@@ -477,16 +477,18 @@
               </m:r>
             </m:lim>
           </m:limUpp>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:limUpp>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limUpp>
           <m:limUpp>
             <m:e>
               <m:r>
@@ -615,16 +617,18 @@
               </m:r>
             </m:e>
           </m:acc>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:limUpp>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limUpp>
           <m:acc>
             <m:accPr>
               <m:chr m:val="⃛" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents3.omml 
new/texmath-0.12.0.1/tests/writers/accents3.omml
--- old/texmath-0.12/tests/writers/accents3.omml        2019-09-13 
06:49:47.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents3.omml    2020-02-14 
18:22:04.000000000 +0100
@@ -102,16 +102,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -244,16 +246,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -545,16 +549,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -687,16 +693,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>H</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents4.omml 
new/texmath-0.12.0.1/tests/writers/accents4.omml
--- old/texmath-0.12/tests/writers/accents4.omml        2019-09-13 
06:49:48.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents4.omml    2020-02-14 
18:22:05.000000000 +0100
@@ -102,16 +102,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -244,16 +246,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -545,16 +549,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
@@ -687,16 +693,18 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
               <m:r>
                 <m:t>x</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:r>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents5.omml 
new/texmath-0.12.0.1/tests/writers/accents5.omml
--- old/texmath-0.12/tests/writers/accents5.omml        2019-09-13 
06:49:46.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents5.omml    2020-02-14 
18:22:04.000000000 +0100
@@ -144,23 +144,25 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:acc>
+                <m:accPr>
+                  <m:chr m:val="¯" />
+                </m:accPr>
                 <m:e>
                   <m:r>
                     <m:t>H</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+              </m:acc>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
@@ -370,23 +372,25 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:acc>
+                <m:accPr>
+                  <m:chr m:val="‾" />
+                </m:accPr>
                 <m:e>
                   <m:r>
                     <m:t>H</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+              </m:acc>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
@@ -851,23 +855,27 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:limUpp>
                 <m:e>
                   <m:r>
                     <m:t>H</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+                <m:lim>
+                  <m:r>
+                    <m:t>¯</m:t>
+                  </m:r>
+                </m:lim>
+              </m:limUpp>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:limUpp>
@@ -1095,23 +1103,27 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:limUpp>
                 <m:e>
                   <m:r>
                     <m:t>H</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+                <m:lim>
+                  <m:r>
+                    <m:t>‾</m:t>
+                  </m:r>
+                </m:lim>
+              </m:limUpp>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/accents6.omml 
new/texmath-0.12.0.1/tests/writers/accents6.omml
--- old/texmath-0.12/tests/writers/accents6.omml        2019-09-13 
06:49:48.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/accents6.omml    2020-02-14 
18:22:05.000000000 +0100
@@ -144,23 +144,25 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:acc>
+                <m:accPr>
+                  <m:chr m:val="¯" />
+                </m:accPr>
                 <m:e>
                   <m:r>
                     <m:t>x</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+              </m:acc>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
@@ -370,23 +372,25 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:acc>
+                <m:accPr>
+                  <m:chr m:val="‾" />
+                </m:accPr>
                 <m:e>
                   <m:r>
                     <m:t>x</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+              </m:acc>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
@@ -851,23 +855,27 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:limUpp>
                 <m:e>
                   <m:r>
                     <m:t>x</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+                <m:lim>
+                  <m:r>
+                    <m:t>¯</m:t>
+                  </m:r>
+                </m:lim>
+              </m:limUpp>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>¯</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:limUpp>
@@ -1095,23 +1103,27 @@
               </m:r>
             </m:lim>
           </m:limLow>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="bot" />
-            </m:barPr>
+          <m:limLow>
             <m:e>
-              <m:bar>
-                <m:barPr>
-                  <m:pos m:val="top" />
-                </m:barPr>
+              <m:limUpp>
                 <m:e>
                   <m:r>
                     <m:t>x</m:t>
                   </m:r>
                 </m:e>
-              </m:bar>
+                <m:lim>
+                  <m:r>
+                    <m:t>‾</m:t>
+                  </m:r>
+                </m:lim>
+              </m:limUpp>
             </m:e>
-          </m:bar>
+            <m:lim>
+              <m:r>
+                <m:t>‾</m:t>
+              </m:r>
+            </m:lim>
+          </m:limLow>
           <m:limLow>
             <m:e>
               <m:acc>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/complex3.omml 
new/texmath-0.12.0.1/tests/writers/complex3.omml
--- old/texmath-0.12/tests/writers/complex3.omml        2019-09-13 
06:49:49.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/complex3.omml    2020-02-14 
18:22:06.000000000 +0100
@@ -11634,16 +11634,16 @@
                 <m:e>
                   <m:sSub>
                     <m:e>
-                      <m:bar>
-                        <m:barPr>
-                          <m:pos m:val="top" />
-                        </m:barPr>
+                      <m:acc>
+                        <m:accPr>
+                          <m:chr m:val="¯" />
+                        </m:accPr>
                         <m:e>
                           <m:r>
                             <m:t>x</m:t>
                           </m:r>
                         </m:e>
-                      </m:bar>
+                      </m:acc>
                     </m:e>
                     <m:sub>
                       <m:r>
@@ -20014,16 +20014,16 @@
           <m:r>
             <m:t>+</m:t>
           </m:r>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="¯" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:t>g</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:r>
             <m:t>+</m:t>
           </m:r>
@@ -22784,10 +22784,10 @@
       </m:mr>
       <m:mr>
         <m:e>
-          <m:bar>
-            <m:barPr>
-              <m:pos m:val="top" />
-            </m:barPr>
+          <m:acc>
+            <m:accPr>
+              <m:chr m:val="¯" />
+            </m:accPr>
             <m:e>
               <m:r>
                 <m:rPr>
@@ -22797,7 +22797,7 @@
                 <m:t>lim</m:t>
               </m:r>
             </m:e>
-          </m:bar>
+          </m:acc>
           <m:r>
             <m:t>x</m:t>
           </m:r>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/moAaccent10.omml 
new/texmath-0.12.0.1/tests/writers/moAaccent10.omml
--- old/texmath-0.12/tests/writers/moAaccent10.omml     2019-09-13 
06:49:46.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/moAaccent10.omml 2020-02-14 
18:22:03.000000000 +0100
@@ -4,10 +4,7 @@
     <m:jc m:val="center" />
   </m:oMathParaPr>
   <m:oMath>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:limUpp>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -19,14 +16,16 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+      <m:lim>
+        <m:r>
+          <m:t>‾</m:t>
+        </m:r>
+      </m:lim>
+    </m:limUpp>
     <m:r>
       <m:t>+</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:limUpp>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -38,14 +37,16 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+      <m:lim>
+        <m:r>
+          <m:t>‾</m:t>
+        </m:r>
+      </m:lim>
+    </m:limUpp>
     <m:r>
       <m:t>+</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:limUpp>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -57,6 +58,11 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+      <m:lim>
+        <m:r>
+          <m:t>‾</m:t>
+        </m:r>
+      </m:lim>
+    </m:limUpp>
   </m:oMath>
 </m:oMathPara>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/moAaccent9.omml 
new/texmath-0.12.0.1/tests/writers/moAaccent9.omml
--- old/texmath-0.12/tests/writers/moAaccent9.omml      2019-09-13 
06:49:49.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/moAaccent9.omml  2020-02-14 
18:22:05.000000000 +0100
@@ -4,10 +4,10 @@
     <m:jc m:val="center" />
   </m:oMathParaPr>
   <m:oMath>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="‾" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -19,14 +19,14 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:r>
       <m:t>+</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="‾" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -38,14 +38,11 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:r>
       <m:t>+</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:limUpp>
       <m:e>
         <m:r>
           <m:t>G</m:t>
@@ -57,6 +54,11 @@
           <m:t>1</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+      <m:lim>
+        <m:r>
+          <m:t>‾</m:t>
+        </m:r>
+      </m:lim>
+    </m:limUpp>
   </m:oMath>
 </m:oMathPara>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/stretchAccents1.omml 
new/texmath-0.12.0.1/tests/writers/stretchAccents1.omml
--- old/texmath-0.12/tests/writers/stretchAccents1.omml 2019-09-13 
06:49:46.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/stretchAccents1.omml     2020-02-14 
18:22:03.000000000 +0100
@@ -17,16 +17,16 @@
     <m:r>
       <m:t>+</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="¯" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>xxx</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:r>
       <m:t>+</m:t>
     </m:r>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/tests/writers/stretchAccents2.omml 
new/texmath-0.12.0.1/tests/writers/stretchAccents2.omml
--- old/texmath-0.12/tests/writers/stretchAccents2.omml 2019-09-13 
06:49:48.000000000 +0200
+++ new/texmath-0.12.0.1/tests/writers/stretchAccents2.omml     2020-02-14 
18:22:05.000000000 +0100
@@ -4,23 +4,23 @@
     <m:jc m:val="center" />
   </m:oMathParaPr>
   <m:oMath>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="¯" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:t>xxx</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
     <m:r>
       <m:t>=</m:t>
     </m:r>
-    <m:bar>
-      <m:barPr>
-        <m:pos m:val="top" />
-      </m:barPr>
+    <m:acc>
+      <m:accPr>
+        <m:chr m:val="¯" />
+      </m:accPr>
       <m:e>
         <m:r>
           <m:rPr>
@@ -29,6 +29,6 @@
           <m:t>xxx</m:t>
         </m:r>
       </m:e>
-    </m:bar>
+    </m:acc>
   </m:oMath>
 </m:oMathPara>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/texmath-0.12/texmath.cabal 
new/texmath-0.12.0.1/texmath.cabal
--- old/texmath-0.12/texmath.cabal      2019-11-12 20:07:47.000000000 +0100
+++ new/texmath-0.12.0.1/texmath.cabal  2020-02-15 06:54:29.000000000 +0100
@@ -1,5 +1,5 @@
 Name:                texmath
-Version:             0.12
+Version:             0.12.0.1
 Cabal-Version:       >= 1.10
 Build-type:          Simple
 Synopsis:            Conversion between formats used to represent mathematics.


Reply via email to