diff --git a/changes.md b/changes.md
new file mode 100644
--- /dev/null
+++ b/changes.md
@@ -0,0 +1,6 @@
+0.1.0.6
+
+ * Added simple implementation of transport for UDP
+ * Verified build & unit tests on Linux Ubuntu 13.10 with GHC 7.6.3
+ * Verified build & unit tests on pre-release GHC 7.8 on FP Complete's platform
+ * Mac OS X 10.9 is unreliable for unit tests, do to non-deterministic socket bind failures
diff --git a/courier.cabal b/courier.cabal
--- a/courier.cabal
+++ b/courier.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                courier
-version:             0.1.0.6
+version:             0.1.0.7
 synopsis:           A message-passing library for simplifying network applications
 description:         Inspired by Erlang's simple message-passing facilities, courier provides roughly similar 
                      capabilities. Applications simply create one or more endpoints, 
@@ -17,6 +17,7 @@
                      will always be received in the order delivered. In this sense, endpoints are more akin to 
                      channels in Go but without the strict typing.
                      
+extra-source-files:  changes.md
 homepage:          http://github.com/hargettp/courier
 license:             MIT
 license-file:        LICENSE
