packages feed

Ordinary 0.2018.1.4 → 0.2018.1.8

raw patch · 2 files changed

+6/−5 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Ordinary.cabal view
@@ -2,12 +2,13 @@ -- -- see: https://github.com/sol/hpack ----- hash: ebc3c9bd3445afb4088fcc7e3f742e5565a5fd65b9b047efb8617eee3beb80f2+-- hash: 20266fdf14a89507fc5817041470c18629ba45d2e723b9ac63d93ab68a34d3aa  name:           Ordinary-version:        0.2018.1.4-synopsis:       Short description of your package+version:        0.2018.1.8+synopsis:       A Programming Language in Construction description:    Please see the README on Github at <https://github.com/MarisaKirisame/Ordinary#readme>+category:       Language homepage:       https://github.com/MarisaKirisame/Ordinary#readme bug-reports:    https://github.com/MarisaKirisame/Ordinary/issues author:         Marisa Kirisame
src/Lib.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE PartialTypeSignatures #-}+{-# LANGUAGE PartialTypeSignatures, OverloadedStrings #-}  module Lib     ( someFunc@@ -10,7 +10,7 @@ import Data.List  someFunc :: IO ()-someFunc = startGUI defaultConfig setup+someFunc = startGUI defaultConfig { jsAddr = Just "0.0.0.0" } setup  class PrintType a where     printType :: a -> b