diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,10 @@
 # Revision history for skylighting
 
+## 0.4.3.1 -- 2017-11-03
+
+  * Fixed typo in css (Artymort).
+  * Fixed travis build times.
+
 ## 0.4.3 --- 2017-11-02
 
   * `FormatOptions`: added `lineIdPrefix` (jgm/pandoc#4031).
diff --git a/skylighting.cabal b/skylighting.cabal
--- a/skylighting.cabal
+++ b/skylighting.cabal
@@ -1,5 +1,5 @@
 name:                skylighting
-version:             0.4.3
+version:             0.4.3.1
 synopsis:            syntax highlighting library
 description:         Skylighting is a syntax highlighting library with
                      support for over one hundred languages.  It derives
diff --git a/src/Skylighting/Format/HTML.hs b/src/Skylighting/Format/HTML.hs
--- a/src/Skylighting/Format/HTML.hs
+++ b/src/Skylighting/Format/HTML.hs
@@ -173,7 +173,7 @@
           , "}"
           ]
          linkspec = [ "@media screen {"
-          , "a.sourceLine::before { text-decoration: underline; color = initial; }"
+          , "a.sourceLine::before { text-decoration: underline; color: initial; }"
           , "}"
           ]
 
