diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -4,8 +4,10 @@
 [![Hackage][hi]][hl]
 [![Build status][bi]][bl]
 [![Windows build status][wi]][wl]
+[![Dependencies status][di]][dl]
 
 Documentation can be found on [Hackage][hl].
+Changes between versions are recorded in the [change log](changelog.md).
 
 Building from Git repository
 ----------------------------
@@ -26,4 +28,6 @@
 [bl]: https://travis-ci.org/haskell/directory
 [wi]: https://ci.appveyor.com/api/projects/status/github/haskell/directory?branch=master&svg=true
 [wl]: https://ci.appveyor.com/project/hvr/directory
+[di]: https://img.shields.io/hackage-deps/v/directory.svg
+[dl]: http://packdeps.haskellers.com/feed?needle=directory
 [ac]: https://gnu.org/software/autoconf
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,13 +1,19 @@
 Changelog for the [`directory`][1] package
 ==========================================
 
+## 1.3.0.1 (January 2017)
+
+  * Relax Win32 version bounds to support 2.5.
+    ([#67](https://github.com/haskell/directory/pull/67))
+
 ## 1.3.0.0 (December 2016)
 
-  * Drop trailing slashes in `canonicalizePath`
+  * **[breaking]** Drop trailing slashes in `canonicalizePath`
     ([#63](https://github.com/haskell/directory/issues/63))
 
-  * Rename `isSymbolicLink` to `pathIsSymbolicLink`.  The old name will remain
-    available but may be removed in the next major release.
+  * **[deprecation]** Rename `isSymbolicLink` to `pathIsSymbolicLink`.  The
+    old name will remain available but may be removed in the next major
+    release.
     ([#52](https://github.com/haskell/directory/issues/52))
 
   * Changed `canonicalizePath` to dereference symbolic links even if it points
diff --git a/directory.cabal b/directory.cabal
--- a/directory.cabal
+++ b/directory.cabal
@@ -1,5 +1,5 @@
 name:           directory
-version:        1.3.0.0
+version:        1.3.0.1
 -- NOTE: Don't forget to update ./changelog.md
 license:        BSD3
 license-file:   LICENSE
@@ -58,7 +58,7 @@
         time     >= 1.4 && < 1.8,
         filepath >= 1.3 && < 1.5
     if os(windows)
-        build-depends: Win32 >= 2.2.2 && < 2.5
+        build-depends: Win32 >= 2.2.2 && < 2.6
     else
         build-depends: unix >= 2.5.1 && < 2.8
 
