diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
--- /dev/null
+++ b/ChangeLog.md
@@ -0,0 +1,3 @@
+#### 0.1.0.2 *2016-03-31*
+
+* Fix parsing of string literals in attribute selectors.
diff --git a/Text/XML/HXT/CSS/Parser.hs b/Text/XML/HXT/CSS/Parser.hs
--- a/Text/XML/HXT/CSS/Parser.hs
+++ b/Text/XML/HXT/CSS/Parser.hs
@@ -155,7 +155,7 @@
     string1 =
         char '"' *>
             many (noneOf "\n\r\f\\\"" <|> nl <|> nonascii {- <|> escape -})
-                <* char '*'
+                <* char '"'
     string2 =
         char '\'' *>
             many (noneOf "\n\r\f\\'"  <|> nl <|> nonascii {- <|> escape -})
diff --git a/hxt-css.cabal b/hxt-css.cabal
--- a/hxt-css.cabal
+++ b/hxt-css.cabal
@@ -1,5 +1,5 @@
 name:                hxt-css
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            CSS selectors for HXT
 description:
   This package makes it possible to easily traverse (X)HTML/XML documents
@@ -15,6 +15,9 @@
 category:            XML, HTML
 build-type:          Simple
 cabal-version:       >=1.10
+
+extra-source-files:
+  ChangeLog.md
 
 source-repository head
   type: git
