diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,2 @@
+1.0.0 (2012-01-28):
+    - (2011-07-12) Forked from the Posta project (at 0.11.0-beta).
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2010--2013, wren ng thornton.
+Copyright (c) 2010--2013, wren gayle romano.
 ALL RIGHTS RESERVED.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/README b/README
new file mode 100644
--- /dev/null
+++ b/README
@@ -0,0 +1,34 @@
+data-or
+=======
+
+This is a simple package and should be easy to install. You should
+be able to use one of the following standard methods to install it.
+
+    -- With cabal-install and without the source:
+    $> cabal install data-or
+    
+    -- With cabal-install and with the source already:
+    $> cd data-or
+    $> cabal install
+    
+    -- Without cabal-install, but with the source already:
+    $> cd data-or
+    $> runhaskell Setup.hs configure --user
+    $> runhaskell Setup.hs build
+    $> runhaskell Setup.hs test
+    $> runhaskell Setup.hs haddock --hyperlink-source
+    $> runhaskell Setup.hs copy
+    $> runhaskell Setup.hs register
+
+The test step is optional and currently does nothing. The Haddock
+step is also optional.
+
+
+Portability
+===========
+
+An attempt has been made to keep this library as portable as possible.
+It is Haskell98 except for the use of CPP, which allows some functions
+to be good producers for list fusion in GHC.
+
+----------------------------------------------------------- fin.
diff --git a/VERSION b/VERSION
deleted file mode 100644
--- a/VERSION
+++ /dev/null
@@ -1,2 +0,0 @@
-1.0.0 (2012-01-28):
-    - (2011-07-12) Forked from the Posta project (at 0.11.0-beta).
diff --git a/data-or.cabal b/data-or.cabal
--- a/data-or.cabal
+++ b/data-or.cabal
@@ -1,5 +1,5 @@
 ----------------------------------------------------------------
--- wren ng thornton <wren@community.haskell.org>    ~ 2014.03.30
+-- wren gayle romano <wren@community.haskell.org>   ~ 2015.05.30
 ----------------------------------------------------------------
 
 -- By and large Cabal >=1.2 is fine; but >= 1.6 gives tested-with:
@@ -8,12 +8,12 @@
 Build-Type:     Simple
 
 Name:           data-or
-Version:        1.0.0.4
+Version:        1.0.0.5
 Stability:      provisional
 Homepage:       http://code.haskell.org/~wren/
-Author:         wren ng thornton
+Author:         wren gayle romano
 Maintainer:     wren@community.haskell.org
-Copyright:      Copyright (c) 2010--2013 wren ng thornton
+Copyright:      Copyright (c) 2010--2015 wren gayle romano
 License:        BSD3
 License-File:   LICENSE
 
@@ -24,7 +24,7 @@
 Tested-With:
     GHC ==6.12.1, GHC ==6.12.3, GHC ==7.6.1, GHC ==7.8.0
 Extra-source-files:
-    VERSION
+    README, CHANGELOG
 Source-Repository head
     Type:     darcs
     Location: http://community.haskell.org/~wren/data-or
diff --git a/src/Data/Or.hs b/src/Data/Or.hs
--- a/src/Data/Or.hs
+++ b/src/Data/Or.hs
@@ -4,7 +4,7 @@
 --                                                    2011.06.03
 -- |
 -- Module      :  Data.Or
--- Copyright   :  Copyright (c) 2010--2012 wren ng thornton
+-- Copyright   :  Copyright (c) 2010--2015 wren gayle romano
 -- License     :  BSD
 -- Maintainer  :  wren@community.haskell.org
 -- Stability   :  provisional
