Cabal-syntax 3.14.0.0 → 3.14.1.0
raw patch · 4 files changed
+4/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Cabal-syntax.cabal +1/−1
- ChangeLog.md +1/−1
- src/Distribution/Compat/Binary.hs +1/−1
- src/Distribution/Utils/Structured.hs +1/−1
Cabal-syntax.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: Cabal-syntax-version: 3.14.0.0+version: 3.14.1.0 copyright: 2003-2024, Cabal Development Team (see AUTHORS file) license: BSD-3-Clause license-file: LICENSE
ChangeLog.md view
@@ -1,1 +1,1 @@-Please see https://github.com/haskell/cabal/blob/master/release-notes/Cabal-3.14.0.0.md+Please see https://github.com/haskell/cabal/blob/master/release-notes/Cabal-3.14.1.0.md
src/Distribution/Compat/Binary.hs view
@@ -20,4 +20,4 @@ decodeOrFailIO bs = catch (evaluate (decode bs) >>= return . Right) handler where- handler (ErrorCallWithLocation str _) = return $ Left str+ handler (ErrorCall str) = return $ Left str
src/Distribution/Utils/Structured.hs view
@@ -277,7 +277,7 @@ structuredDecodeOrFailIO bs = catch (evaluate (structuredDecode bs) >>= return . Right) handler where- handler (ErrorCallWithLocation str _) = return $ Left str+ handler (ErrorCall str) = return $ Left str -- | Lazily reconstruct a value previously written to a file. structuredDecodeFileOrFail :: (Binary.Binary a, Structured a) => FilePath -> IO (Either String a)