ecstasy 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Data.Ecstasy: FieldOf :: StorageType
+ Data.Ecstasy: SetterOf :: StorageType
+ Data.Ecstasy: WorldOf :: (Type -> Type) -> StorageType
+ Data.Ecstasy: data StorageType
Files
- ChangeLog.md +4/−0
- ecstasy.cabal +1/−1
- src/Data/Ecstasy.hs +2/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for ecstasy +## 0.2.0.1 -- 2018-05-10++* Also export 'StorageType'.+ ## 0.2.0.0 -- 2018-05-10 * Renamed 'get*' to 'query*'.
ecstasy.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: ecstasy-version: 0.2.0.0+version: 0.2.0.1 synopsis: A GHC.Generics based entity component system.
src/Data/Ecstasy.hs view
@@ -19,7 +19,7 @@ -- synonym: -- -- @--- type Entity = World 'FieldOf+-- type Entity = World ''FieldOf' -- @ -- -- which is the only form of the @World@ that most users of ecstasy will@@ -38,6 +38,7 @@ -- * Storage -- $world , defStorage+ , StorageType (..) -- * The SystemT monad -- $systemt