diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2016, Drew Hess
+Copyright (c) 2017, Quixoftic, LLC
 
 All rights reserved.
 
@@ -13,7 +13,7 @@
       disclaimer in the documentation and/or other materials provided
       with the distribution.
 
-    * Neither the name of Drew Hess nor the names of other
+    * Neither the name of Quixoftic, LLC, nor the names of other
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -76,4 +76,4 @@
 always run it (or any `mellon-web` server) behind a secure proxy web
 service or equivalent HTTP(S)-based authentication mechanism.
 
-[![Travis CI build status](https://travis-ci.org/dhess/mellon.svg?branch=master)](https://travis-ci.org/dhess/mellon)
+[![Travis CI build status](https://travis-ci.org/quixoftic/mellon.svg?branch=master)](https://travis-ci.org/quixoftic/mellon)
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+## 0.7.1.1 (2017-05-24)
+
+No changes; copyright has been assigned to Quixoftic, LLC.
+
 ## 0.7.1.0 (2017-04-28)
 
 - Now requires servant-client >= 0.9.
diff --git a/mellon-web.cabal b/mellon-web.cabal
--- a/mellon-web.cabal
+++ b/mellon-web.cabal
@@ -1,15 +1,15 @@
 Name:                   mellon-web
-Version:                0.7.1.0
+Version:                0.7.1.1
 Cabal-Version:          >= 1.10
 Build-Type:             Simple
-Author:                 Drew Hess <src@drewhess.com>
-Maintainer:             Drew Hess <src@drewhess.com>
-Homepage:               https://github.com/dhess/mellon/
-Bug-Reports:            https://github.com/dhess/mellon/issues/
+Author:                 Drew Hess <dhess-src@quixoftic.com>
+Maintainer:             Drew Hess <dhess-src@quixoftic.com>
+Homepage:               https://github.com/quixoftic/mellon/
+Bug-Reports:            https://github.com/quixoftic/mellon/issues/
 Stability:              experimental
 License:                BSD3
 License-File:           LICENSE
-Copyright:              Copyright (c) 2016, Drew Hess
+Copyright:              Copyright (c) 2017, Quixoftic, LLC
 Tested-With:            GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2
 Category:               Web
 Synopsis:               A REST web service for Mellon controllers
@@ -247,9 +247,9 @@
 
 Source-Repository head
   Type:                 git
-  Location:             git://github.com/dhess/mellon.git
+  Location:             git://github.com/quixoftic/mellon.git
 
 Source-Repository this
   Type:                 git
-  Location:             git://github.com/dhess/mellon.git
-  Tag:                  v0.7.1.0
+  Location:             git://github.com/quixoftic/mellon.git
+  Tag:                  v0.7.1.1
diff --git a/src/Mellon/Web/Client.hs b/src/Mellon/Web/Client.hs
--- a/src/Mellon/Web/Client.hs
+++ b/src/Mellon/Web/Client.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Mellon.Web.Client
 Description : Client actions for the REST web service
-Copyright   : (c) 2016, Drew Hess
+Copyright   : (c) 2017, Quixoftic, LLC
 License     : BSD3
-Maintainer  : Drew Hess <src@drewhess.com>
+Maintainer  : Drew Hess <dhess-src@quixoftic.com>
 Stability   : experimental
 Portability : non-portable
 
diff --git a/src/Mellon/Web/Server.hs b/src/Mellon/Web/Server.hs
--- a/src/Mellon/Web/Server.hs
+++ b/src/Mellon/Web/Server.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Mellon.Web.Server
 Description : Top-level server re-exports
-Copyright   : (c) 2016, Drew Hess
+Copyright   : (c) 2017, Quixoftic, LLC
 License     : BSD3
-Maintainer  : Drew Hess <src@drewhess.com>
+Maintainer  : Drew Hess <dhess-src@quixoftic.com>
 Stability   : experimental
 Portability : non-portable
 
diff --git a/src/Mellon/Web/Server/API.hs b/src/Mellon/Web/Server/API.hs
--- a/src/Mellon/Web/Server/API.hs
+++ b/src/Mellon/Web/Server/API.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Mellon.Web.Server.API
 Description : A REST web service for @mellon-core@ controllers
-Copyright   : (c) 2016, Drew Hess
+Copyright   : (c) 2017, Quixoftic, LLC
 License     : BSD3
-Maintainer  : Drew Hess <src@drewhess.com>
+Maintainer  : Drew Hess <dhess-src@quixoftic.com>
 Stability   : experimental
 Portability : non-portable
 
@@ -142,6 +142,8 @@
 -- $
 -- >>> (eitherDecode $ encode $ toJSON $ Unlocked sampleDate) :: Either String State
 -- Right (Unlocked 2015-10-06 00:00:00 UTC)
+-- >>> eitherDecode $ "{\"state\":\"Unlocked\",\"until\":\"2017-05-05T22:30-08:00\"}" :: Either String State
+-- Right (Unlocked 2017-05-06 06:30:00 UTC)
 -- >>> (eitherDecode $ encode $ toJSON Locked) :: Either String State
 -- Right Locked
 -- >>> eitherDecode $ "{\"state\":\"Unlocked\"}" :: Either String State
diff --git a/src/Mellon/Web/Server/SwaggerAPI.hs b/src/Mellon/Web/Server/SwaggerAPI.hs
--- a/src/Mellon/Web/Server/SwaggerAPI.hs
+++ b/src/Mellon/Web/Server/SwaggerAPI.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Mellon.Web.Server.SwaggerAPI
 Description : A Swagger-enhanced REST web service for @mellon-core@ controllers
-Copyright   : (c) 2016, Drew Hess
+Copyright   : (c) 2017, Quixoftic, LLC
 License     : BSD3
-Maintainer  : Drew Hess <src@drewhess.com>
+Maintainer  : Drew Hess <dhess-src@quixofticg.com>
 Stability   : experimental
 Portability : non-portable
 
