diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+2.0.1
+---
+
+* Fixes:
+    * Re-export `Pattern` synonym from `Data.Swagger`;
+    * Documentation fixes.
+
 2.0
 ---
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2015, GetShopTV
+Copyright (c) 2015-2016, GetShopTV
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/src/Data/Swagger.hs b/src/Data/Swagger.hs
--- a/src/Data/Swagger.hs
+++ b/src/Data/Swagger.hs
@@ -1,4 +1,8 @@
 -- |
+-- Module:      Data.Swagger
+-- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
+-- Stability:   experimental
+--
 -- Swagger™ is a project used to describe and document RESTful APIs.
 --
 -- The Swagger specification defines a set of files required to describe such an API.
@@ -71,6 +75,7 @@
   NamedSchema(..),
   SwaggerItems(..),
   Xml(..),
+  Pattern,
 
   -- ** Responses
   Responses(..),
@@ -274,10 +279,10 @@
 -- for a type-level servant API.
 --
 -- Lenses and prisms can be used to manipulate such specification to add additional information, tags, extra responses, etc.
--- To facilitate common needs, @'Data.Swagger.Operation'@ module provides useful helpers.
+-- To facilitate common needs, @"Data.Swagger.Operation"@ module provides useful helpers.
 
 -- $validation
 -- While @'ToParamSchema'@ and @'ToSchema'@ provide means to easily obtain schemas for Haskell types,
 -- there is no static mechanism to ensure those instances correspond to the @'ToHttpApiData'@ or @'ToJSON'@ instances.
 --
--- @'Data.Swagger.Schema.Validation'@ addresses @'ToJSON'@/@'ToSchema'@ validation.
+-- @"Data.Swagger.Schema.Validation"@ addresses @'ToJSON'@/@'ToSchema'@ validation.
diff --git a/src/Data/Swagger/Declare.hs b/src/Data/Swagger/Declare.hs
--- a/src/Data/Swagger/Declare.hs
+++ b/src/Data/Swagger/Declare.hs
@@ -2,6 +2,12 @@
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE FunctionalDependencies #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
+-- |
+-- Module:      Data.Swagger.Declare
+-- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
+-- Stability:   experimental
+--
+-- Declare monad transformer and associated functions.
 module Data.Swagger.Declare where
 
 import Prelude ()
diff --git a/src/Data/Swagger/Lens.hs b/src/Data/Swagger/Lens.hs
--- a/src/Data/Swagger/Lens.hs
+++ b/src/Data/Swagger/Lens.hs
@@ -10,6 +10,12 @@
 {-# LANGUAGE UndecidableInstances #-}
 {-# OPTIONS_GHC -fno-warn-orphans #-}
 #include "overlapping-compat.h"
+-- |
+-- Module:      Data.Swagger.Lens
+-- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
+-- Stability:   experimental
+--
+-- Lenses and prisms for Swagger.
 module Data.Swagger.Lens where
 
 import Control.Lens
diff --git a/src/Data/Swagger/Operation.hs b/src/Data/Swagger/Operation.hs
--- a/src/Data/Swagger/Operation.hs
+++ b/src/Data/Swagger/Operation.hs
@@ -1,8 +1,6 @@
 {-# LANGUAGE RankNTypes #-}
 -- |
 -- Module:      Data.Swagger.Operation
--- Copyright:   (c) 2015 GetShopTV
--- License:     BSD3
 -- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
 -- Stability:   experimental
 --
diff --git a/src/Data/Swagger/ParamSchema.hs b/src/Data/Swagger/ParamSchema.hs
--- a/src/Data/Swagger/ParamSchema.hs
+++ b/src/Data/Swagger/ParamSchema.hs
@@ -1,7 +1,5 @@
 -- |
 -- Module:      Data.Swagger.ParamSchema
--- Copyright:   (c) 2015 GetShopTV
--- License:     BSD3
 -- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
 -- Stability:   experimental
 --
diff --git a/src/Data/Swagger/Schema.hs b/src/Data/Swagger/Schema.hs
--- a/src/Data/Swagger/Schema.hs
+++ b/src/Data/Swagger/Schema.hs
@@ -1,7 +1,5 @@
 -- |
 -- Module:      Data.Swagger.Schema
--- Copyright:   (c) 2015 GetShopTV
--- License:     BSD3
 -- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
 -- Stability:   experimental
 --
diff --git a/src/Data/Swagger/Schema/Validation.hs b/src/Data/Swagger/Schema/Validation.hs
--- a/src/Data/Swagger/Schema/Validation.hs
+++ b/src/Data/Swagger/Schema/Validation.hs
@@ -1,7 +1,5 @@
 -- |
 -- Module:      Data.Swagger.Schema.Validation
--- Copyright:   (c) 2015 GetShopTV
--- License:     BSD3
 -- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
 -- Stability:   experimental
 --
diff --git a/src/Data/Swagger/SchemaOptions.hs b/src/Data/Swagger/SchemaOptions.hs
--- a/src/Data/Swagger/SchemaOptions.hs
+++ b/src/Data/Swagger/SchemaOptions.hs
@@ -1,3 +1,9 @@
+-- |
+-- Module:      Data.Swagger.SchemaOptions
+-- Maintainer:  Nickolay Kudasov <nickolay@getshoptv.com>
+-- Stability:   experimental
+--
+-- Generic deriving options for @'ToParamSchema'@ and @'ToSchema'@.
 module Data.Swagger.SchemaOptions where
 
 -- | Options that specify how to encode your type to Swagger schema.
diff --git a/swagger2.cabal b/swagger2.cabal
--- a/swagger2.cabal
+++ b/swagger2.cabal
@@ -1,5 +1,5 @@
 name:                swagger2
-version:             2.0
+version:             2.0.1
 synopsis:            Swagger 2.0 data model
 description:         Please see README.md
 homepage:            https://github.com/GetShopTV/swagger2
@@ -8,7 +8,7 @@
 license-file:        LICENSE
 author:              Nickolay Kudasov
 maintainer:          nickolay@getshoptv.com
-copyright:           (c) 2015, GetShopTV
+copyright:           (c) 2015-2016, GetShopTV
 category:            Web
 build-type:          Simple
 extra-source-files:
