diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-03-06  Evan Cofsky  <evan@theunixman.com>
+
+	* liblawles.cabal: 0.17.2
+	* Source/Path.hs: Export the path operators.
+	* test.sh: Build and run tests.
+	* hackage.sh: Upload tagged package to hackage.
+
 2016-12-17  Evan Cofsky  <evan@theunixman.com>
 
 	* liblawless.cabal: Add new tests and Arbitrary module.
diff --git a/Source/Path.hs b/Source/Path.hs
--- a/Source/Path.hs
+++ b/Source/Path.hs
@@ -28,10 +28,12 @@
     absDir,
     relDir,
     absRelFile,
-    absRelDir
-    )where
+    absRelDir,
+    (</>),
+    (<.>)
+    ) where
 
-import Lawless
+import Lawless hiding ((<.>))
 import Text
 import System.Path (
     AbsFile,
@@ -45,6 +47,7 @@
 import qualified System.Path.PartClass as C
 import Aeson hiding (parse)
 import Control.Monad.Fail
+import System.Path ((</>), (<.>))
 
 parse ∷ (IsText t, C.AbsRel ar, C.FileDir fd) ⇒ t → Either Text (P.Path ar fd)
 parse t = case P.parse (t ^. unpacked) of
diff --git a/liblawless.cabal b/liblawless.cabal
--- a/liblawless.cabal
+++ b/liblawless.cabal
@@ -1,5 +1,5 @@
 name:                liblawless
-version:             0.17.1
+version:             0.17.2
 synopsis:            Prelude based on protolude for GHC 8 and beyond.
 license:             GPL-3
 license-file:        LICENSE
@@ -22,12 +22,12 @@
 
 source-repository head
   type:     git
-  location: git+ssh://lambdanow.us/projects/haskellnow/liblawless.git
+  location: git@gitlab.com:misandrist/liblawless.git
 
 source-repository this
   type:     git
-  location:   location: git+ssh://lambdanow.us/projects/haskellnow/liblawless.git
-  tag: v0.17.0
+  location:   git@gitlab.com:misandrist/liblawless.git
+  tag: v0.17.2
 
 library
   ghc-options: -Wall -O2
