packages feed

aivika-gpss 0.5 → 0.6

raw patch · 4 files changed

+5/−5 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- Simulation.Aivika.GPSS.Block: data Block a b
- Simulation.Aivika.Trans.GPSS.Block: data Block m a b
+ Simulation.Aivika.GPSS.Block: newtype Block a b
+ Simulation.Aivika.Trans.GPSS.Block: newtype Block m a b

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2017 David Sorokin <david.sorokin@gmail.com>+Copyright (c) 2018 David Sorokin <david.sorokin@gmail.com>  All rights reserved. 
Simulation/Aivika/GPSS/Block.hs view
@@ -23,7 +23,7 @@ import Simulation.Aivika  -- | Represents a GPSS block.-data Block a b =+newtype Block a b =   Block { blockProcess :: a -> Process b           -- ^ Process the item.         }
Simulation/Aivika/Trans/GPSS/Block.hs view
@@ -23,7 +23,7 @@ import Simulation.Aivika.Trans  -- | Represents a GPSS block.-data Block m a b =+newtype Block m a b =   Block { blockProcess :: a -> Process m b           -- ^ Process the item.         }
aivika-gpss.cabal view
@@ -1,5 +1,5 @@ name:            aivika-gpss-version:         0.5+version:         0.6 synopsis:        GPSS-like DSL for Aivika description:     This package allows defining simulation models in terms of a GPSS-like@@ -40,7 +40,7 @@ category:        Simulation license:         BSD3 license-file:    LICENSE-copyright:       (c) 2017. David Sorokin <david.sorokin@gmail.com>+copyright:       (c) 2018. David Sorokin <david.sorokin@gmail.com> author:          David Sorokin maintainer:      David Sorokin <david.sorokin@gmail.com> homepage:        http://www.aivikasoft.com