packages feed

apecs 0.7.2 → 0.7.3

raw patch · 3 files changed

+7/−2 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,4 +1,8 @@-## [Unreleased]+## [0.7.3]+### Changed+- Added Data.Semigroup to Stores.Extra to build with GHC 8.2.2 in hackage matrix++## [0.7.2] ### Changed - Fixed bug in the `Pushdown` store - `Apecs` module no longer re-exports the entire `Data.Proxy` module, but instead just `Proxy (..)`.
apecs.cabal view
@@ -1,5 +1,5 @@ name:                apecs-version:             0.7.2+version:             0.7.3 homepage:            https://github.com/jonascarpay/apecs#readme license:             BSD3 license-file:        LICENSE
src/Apecs/Stores/Extra.hs view
@@ -22,6 +22,7 @@  import Control.Monad.Reader import Data.Proxy+import Data.Semigroup  import Apecs.Components (MaybeStore (..)) import Apecs.Core