diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Revision history for curly-expander
 
+## 0.2.0.2
+* Improved cabal file
+
 ## 0.2.0.1
 * Improved documentation
 
diff --git a/Text/CurlyExpander.hs b/Text/CurlyExpander.hs
--- a/Text/CurlyExpander.hs
+++ b/Text/CurlyExpander.hs
@@ -1,7 +1,7 @@
 {-|
 Module      : Text.CurlyExpander
-License     : GPL-3
-Maintainer  : p@stty.cz
+License     : LGPL-3
+Maintainer  : p-w@stty.cz
 Stability   : testing
 Portability : POSIX
 
diff --git a/curly-expander.cabal b/curly-expander.cabal
--- a/curly-expander.cabal
+++ b/curly-expander.cabal
@@ -1,34 +1,35 @@
 cabal-version:       3.0
 
 name:                curly-expander
-version:             0.2.0.1
-synopsis: Curly braces (brackets) expanding
-description: A library for curly braces (brackets) expanding - similar to bash curly expanding
+version:             0.2.0.2
+synopsis:            Curly braces (brackets) expanding
+description:         A library for curly braces (brackets) expanding - similar to bash curly expanding
 
 license:             LGPL-3.0-only
 license-file:        LICENSE
 
+homepage:            https://github.com/stastnypremysl/curly-expander
+bug-reports:         https://github.com/stastnypremysl/curly-expander/issues
+
 author:              Přemysl Šťastný
 maintainer:          p-w@stty.cz
 category:            Text
 build-type:          Simple
 extra-source-files:  CHANGELOG.md README.md
-homepage:            https://github.com/stastnypremysl/curly-expander
 
 common deps
   ghc-options: -Wall -Wextra
   build-depends:   base >= 4.14 && < 4.15, parsec >= 3.1 && < 3.2, text >= 1.2 && < 1.3,
+  default-language:    Haskell2010
 
 common tests
   import: deps
   hs-source-dirs: tests
-  default-language:    Haskell2010
   build-depends: curly-expander
 
 library
   import: deps
   exposed-modules: Text.CurlyExpander
-  default-language:    Haskell2010
   
 
 test-suite base-case-test
@@ -53,4 +54,4 @@
 source-repository this
     type: git
     location: https://github.com/stastnypremysl/curly-expander
-    tag: 0.2.0.1
+    tag: 0.2.0.2
