diff --git a/.travis.yml b/.travis.yml
new file mode 100644
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,40 @@
+# This is the simple Travis configuration, which is intended for use
+# on applications which do not require cross-platform and
+# multiple-GHC-version support. For more information and other
+# options, see:
+#
+# https://docs.haskellstack.org/en/stable/travis_ci/
+#
+# Copy these contents into the root directory of your Github project in a file
+# named .travis.yml
+
+# Choose a build environment
+dist: xenial
+
+# Do not choose a language; we provide our own build tools.
+language: generic
+
+# Caching so the next build will be fast too.
+cache:
+  directories:
+  - $HOME/.stack
+
+# Ensure necessary system libraries are present
+addons:
+  apt:
+    packages:
+      - libgmp-dev
+
+before_install:
+# Download and unpack the stack executable
+- mkdir -p ~/.local/bin
+- export PATH=$HOME/.local/bin:$PATH
+- travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
+
+install:
+# Build dependencies
+- stack --no-terminal --install-ghc test --only-dependencies
+
+script:
+# Build the package, its tests, and its docs and run the tests
+- stack --no-terminal test --haddock --no-haddock-deps
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 [![Build Status](https://travis-ci.org/sheyll/bytestring-to-vetcor.svg?branch=master)](https://travis-ci.org/sheyll/bytestring-to-vetcor)
 
-[![Hackage](https://img.shields.io/hackage/v/bytestring-to-vetcor.svg?style=flat)](http://hackage.haskell.org/package/bytestring-to-vetcor)
+[![Hackage](https://img.shields.io/hackage/v/bytestring-to-vetcor.svg?style=flat)](http://hackage.haskell.org/packages/bytestring-to-vetcor)
 
 
 # Platform dependent no-copy vector - bytestring conversion
diff --git a/bytestring-to-vector.cabal b/bytestring-to-vector.cabal
--- a/bytestring-to-vector.cabal
+++ b/bytestring-to-vector.cabal
@@ -1,8 +1,9 @@
 name:                bytestring-to-vector
-version:             0.3.0.0
+version:             0.3.0.1
 license:             BSD3
 license-file:        LICENSE
 synopsis:            Convert between ByteString and Vector.Storable without copying
+homepage:            https://github.com/sheyll/bytestring-to-vector
 category:            Data Structures
 author:              Keegan McAllister <mcallister.keegan@gmail.com>
 maintainer:          Sven Heyll <sven.heyll@gmail.com>
@@ -19,9 +20,8 @@
   .
   This library is a fork of the @spool@ package written by Keegan McAllister.
 
-
 extra-source-files:
-  README.md, stack.yaml, LICENSE
+  README.md, stack.yaml, LICENSE, .travis.yml
 
 library
   exposed-modules:  Data.Vector.Storable.ByteString
