diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+* 0.2.3.2 (15 May 2017)
+
+  - Move to github.
+
 * 0.2.3.1 (2 May 2016)
 
   - Fix a test case which was causing occasional spurious test suite
diff --git a/README b/README
--- a/README
+++ b/README
@@ -9,7 +9,7 @@
 
   There are no dependencies other than the base package.
   Data.List.Split has been tested with versions of GHC from 6.8.3 up
-  through 7.6.1.  It is completely Haskell2010 (probably also
+  through 8.0.1.  It is completely Haskell2010 (probably also
   Haskell98) compliant, so it probably builds with other compilers as
   well.
 
diff --git a/split.cabal b/split.cabal
--- a/split.cabal
+++ b/split.cabal
@@ -1,5 +1,5 @@
 Name:                split
-Version:             0.2.3.1
+Version:             0.2.3.2
 Stability:           stable
 
 Description:         A collection of various methods for splitting
@@ -36,7 +36,7 @@
 Build-type:          Simple
 Cabal-Version:       >= 1.10
 Tested-with:         GHC ==7.0.4, GHC ==7.2.1, GHC ==7.4.*, GHC ==7.6.1, GHC ==7.8.3, GHC==7.10.3, GHC==8.0.1
-Bug-reports:         http://hub.darcs.net/byorgey/split/issues
+Bug-reports:         https://github.com/byorgey/split/issues
 
 Test-suite split-tests
   type:              exitcode-stdio-1.0
@@ -46,12 +46,12 @@
   Hs-source-dirs:    test
 
 Source-repository head
-  type:              darcs
-  location:          http://hub.darcs.net/byorgey/split
+  type:              git
+  location:          http://github.com/byorgey/split.git
 
 Library
   ghc-options:       -Wall
-  build-depends:     base <4.10
+  build-depends:     base <4.11
   exposed-modules:   Data.List.Split, Data.List.Split.Internals
   default-language:  Haskell2010
   Hs-source-dirs:    src
diff --git a/src/Data/List/Split.hs b/src/Data/List/Split.hs
--- a/src/Data/List/Split.hs
+++ b/src/Data/List/Split.hs
@@ -16,9 +16,9 @@
 -- detailed documentation of all exported functions.  If you want to
 -- learn about the implementation, see "Data.List.Split.Internals".
 --
--- A darcs repository containing the source (including a module with
+-- A git repository containing the source (including a module with
 -- over 40 QuickCheck properties) can be found at
--- <http://hub.darcs.net/byorgey/split>.
+-- <https://github.com/byorgey/split>.
 --
 -----------------------------------------------------------------------------
 module Data.List.Split (
