diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,9 @@
+texmath (0.8.2.1)
+
+  * Handle bare hyphen in `\text{...}`.  Closes jgm/pandoc#2274.
+  * Support `\ltimes` and `\rtimes` in the TeX reader (Arata Mizuki).
+  * Slightly more efficient number parser.
+
 texmath (0.8.2)
 
   * Better handling of decimal points. Decimal points are now parsed
diff --git a/src/Text/TeXMath/Readers/TeX.hs b/src/Text/TeXMath/Readers/TeX.hs
--- a/src/Text/TeXMath/Readers/TeX.hs
+++ b/src/Text/TeXMath/Readers/TeX.hs
@@ -719,6 +719,8 @@
            , ("\\backslash", ESymbol Bin "\x2216")
            , ("\\setminus", ESymbol Bin "\\")
            , ("\\times", ESymbol Bin "\x00D7")
+           , ("\\ltimes", ESymbol Bin "\x22C9")
+           , ("\\rtimes", ESymbol Bin "\x22CA")
            , ("\\alpha", EIdentifier "\x03B1")
            , ("\\beta", EIdentifier "\x03B2")
            , ("\\chi", EIdentifier "\x03C7")
@@ -969,6 +971,7 @@
 ligature :: TP String
 ligature = try ("\x2014" <$ string "---")
        <|> try ("\x2013" <$ string "--")
+       <|> try (string "-")
        <|> try ("\x201C" <$ string "``")
        <|> try ("\x201D" <$ string "''")
        <|> try ("\x2019" <$ string "'")
diff --git a/texmath.cabal b/texmath.cabal
--- a/texmath.cabal
+++ b/texmath.cabal
@@ -1,5 +1,5 @@
 Name:                texmath
-Version:             0.8.2
+Version:             0.8.2.1
 Cabal-Version:       >= 1.10
 Build-type:          Simple
 Synopsis:            Conversion between formats used to represent mathematics.
