futhark-data 1.1.0.0 → 1.1.0.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- futhark-data.cabal +1/−1
- src/Futhark/Data/Parser.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for futhark-data +## 1.1.0.1 -- 2023-03-21++* Minor fix for GHC 9.6 changes.+ ## 1.1.0.0 -- 2022-05-02 * String literals are now supported in the textual value format.
futhark-data.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: futhark-data-version: 1.1.0.0+version: 1.1.0.1 synopsis: An implementation of the Futhark data format. description: The Futhark compiler and its tools uses a simple external
src/Futhark/Data/Parser.hs view
@@ -14,7 +14,7 @@ ) where -import Control.Monad.Except+import Control.Monad (unless) import Data.Char (digitToInt, isDigit, isHexDigit) import Data.Functor import qualified Data.Scientific as Sci