diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.3.2.1
+=======
+
+  * Put missing files in the source distribution
+
 0.3.2.0
 =======
 
diff --git a/example/books.xml b/example/books.xml
new file mode 100644
--- /dev/null
+++ b/example/books.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<books>
+<book category="Language and library definition">
+    <title>Haskell 98 language and libraries: the Revised Report</title>
+    <author year="2003">Simon Peyton Jones</author>
+    <pages>272</pages>
+    <price>£45.00</price>
+</book>
+<book category="Textbooks">
+    <title>Learn You a Haskell for Great Good!</title>
+    <author year="2011">Miran Lipovaca</author>
+    <pages>360</pages>
+</book>
+<book category="Textbooks">
+    <title>Programming in Haskell</title>
+    <author year="2007">Graham Hutton</author>
+    <pages>200</pages>
+</book>
+<book category="Textbooks">
+    <title>Real World Haskell</title>
+    <author year="2008">Bryan O'Sullivan, Don Stewart, and John Goerzen</author>
+    <pages>700</pages>
+</book>
+<book category="TextBooks">
+    <title>The Fun of Programming</title>
+    <author year="2002">Jeremy Gibbons and Oege de Moor</author>
+    <pages>288</pages>
+</book>
+<book category="Foundations">
+    <title>Types and Programming Languages</title>
+    <author year="2002">Benjamin C. Pierce</author>
+    <pages>645</pages>
+</book>
+<book category="Joke">
+    <title>Functional Ikamusume</title>
+    <author>Team "Referential Transparent Sea Keepers"</author>
+</book>
+</books>
diff --git a/example/queries.hs b/example/queries.hs
new file mode 100644
--- /dev/null
+++ b/example/queries.hs
@@ -0,0 +1,106 @@
+{-# LANGUAGE OverloadedStrings #-}
+module Queries where
+
+import Control.Applicative -- base
+import Control.Lens        -- lens
+import Data.Text (Text)    -- text
+import Text.Xml.Lens       -- xml-html-conduit-lens
+
+-- $setup
+-- >>> :set -XOverloadedStrings
+-- >>> import Text.Xml.Lens
+-- >>> import qualified Data.Text.Lazy.IO as Text
+-- >>> doc <- Text.readFile "example/books.xml"
+
+-- | List titles of the books in "Textbooks" category:
+--
+-- >>> doc ^.. listTitles
+-- ["Learn You a Haskell for Great Good!","Programming in Haskell","Real World Haskell"]
+listTitles :: AsXmlDocument t => Traversal' t Text
+listTitles = xml...attributed (ix "category".only "Textbooks").node "title".text
+
+-- | List authors of the books longer then 500 pages:
+--
+-- >>> doc ^.. listAuthors
+-- ["Bryan O'Sullivan, Don Stewart, and John Goerzen","Benjamin C. Pierce"]
+listAuthors :: AsXmlDocument t => Traversal' t Text
+listAuthors = xml...filtered (has (node "pages".text.filtered (> "500"))).node "author".text
+
+-- | List titles and authors of the books in "Textbooks" category
+--
+-- >>> doc ^.. listTitlesAndAuthors
+-- [("Learn You a Haskell for Great Good!","Miran Lipovaca"),("Programming in Haskell","Graham Hutton"),("Real World Haskell","Bryan O'Sullivan, Don Stewart, and John Goerzen")]
+listTitlesAndAuthors :: AsXmlDocument t => Fold t (Text, Text)
+listTitlesAndAuthors = xml...attributed (ix "category".only "Textbooks")
+  .runFold (liftA2 (,) (Fold (node "title".text)) (Fold (node "author".text)))
+
+-- | Lists the title of the third book in the list
+--
+-- >>> doc ^? listThirdTitle
+-- Just "Programming in Haskell"
+listThirdTitle :: AsXmlDocument t => Fold t Text
+listThirdTitle = xml.parts.ix 2.node "title".text
+
+-- | List all tags from top to bottom:
+--
+-- >>> doc ^.. listAllTags
+-- ["books","book","title","author","pages","price","book","title","author","pages","book","title","author","pages","book","title","author","pages","book","title","author","pages","book","title","author","pages","book","title","author"]
+listAllTags :: AsXmlDocument t => Fold t Text
+listAllTags = xml.folding universe.name
+
+-- | Compute the length of the books list:
+--
+-- >>> doc & countBooks
+-- 7
+countBooks :: AsXmlDocument t => t -> Int
+countBooks = lengthOf (xml.plate)
+
+-- | Find the title of the first book in "Joke" category:
+--
+-- >>> doc ^? titleOfFirstJokeBook
+-- Just "Functional Ikamusume"
+titleOfFirstJokeBook :: AsXmlDocument t => Traversal' t Text
+titleOfFirstJokeBook = xml...attributed (ix "category".only "Joke").node "title".text
+
+-- | Append the string " pages" to each `<pages>` tag contents:
+--
+-- >>> doc & appendPages & Text.putStr
+-- <?xml version="1.0" encoding="UTF-8"?><books>
+-- <book category="Language and library definition">
+--     <title>Haskell 98 language and libraries: the Revised Report</title>
+--     <author year="2003">Simon Peyton Jones</author>
+--     <pages>272 pages</pages>
+--     <price>£45.00</price>
+-- </book>
+-- <book category="Textbooks">
+--     <title>Learn You a Haskell for Great Good!</title>
+--     <author year="2011">Miran Lipovaca</author>
+--     <pages>360 pages</pages>
+-- </book>
+-- <book category="Textbooks">
+--     <title>Programming in Haskell</title>
+--     <author year="2007">Graham Hutton</author>
+--     <pages>200 pages</pages>
+-- </book>
+-- <book category="Textbooks">
+--     <title>Real World Haskell</title>
+--     <author year="2008">Bryan O'Sullivan, Don Stewart, and John Goerzen</author>
+--     <pages>700 pages</pages>
+-- </book>
+-- <book category="TextBooks">
+--     <title>The Fun of Programming</title>
+--     <author year="2002">Jeremy Gibbons and Oege de Moor</author>
+--     <pages>288 pages</pages>
+-- </book>
+-- <book category="Foundations">
+--     <title>Types and Programming Languages</title>
+--     <author year="2002">Benjamin C. Pierce</author>
+--     <pages>645 pages</pages>
+-- </book>
+-- <book category="Joke">
+--     <title>Functional Ikamusume</title>
+--     <author>Team "Referential Transparent Sea Keepers"</author>
+-- </book>
+-- </books>
+appendPages :: AsXmlDocument t => t -> t
+appendPages = xml...node "pages".text <>~ " pages"
diff --git a/xml-html-conduit-lens.cabal b/xml-html-conduit-lens.cabal
--- a/xml-html-conduit-lens.cabal
+++ b/xml-html-conduit-lens.cabal
@@ -1,5 +1,5 @@
 name:                xml-html-conduit-lens
-version:             0.3.2.0
+version:             0.3.2.1
 synopsis:            Optics for xml-conduit and html-conduit
 description:         Optics for xml-conduit and html-conduit
 homepage:            https://github.com/supki/xml-html-conduit-lens#readme
@@ -14,6 +14,8 @@
 extra-source-files:
   README.md
   CHANGELOG.md
+  example/queries.hs
+  example/books.xml
 
 source-repository head
   type: git
@@ -21,7 +23,7 @@
 
 source-repository this
   type: git
-  tag: 0.3.2.0
+  tag: 0.3.2.1
   location: https://github.com/supki/xml-html-conduit-lens
 
 library
