eventium-core 0.6.0 → 0.6.1
raw patch · 2 files changed
+11/−6 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +5/−0
- eventium-core.cabal +6/−6
CHANGELOG.md view
@@ -1,5 +1,10 @@ # eventium-core Changelog +## 0.6.1++- Raise `base` lower bound to `>= 4.20` (GHC 9.10) to match the supported toolchain. Fixes a Hackage build failure where `foldl'` was not in scope on older `base` versions.+- Add `homepage: https://eventium.dev`.+ ## 0.2.1 (Unreleased) ### Additions
eventium-core.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: eventium-core-version: 0.6.0+version: 0.6.1 synopsis: Core module for eventium description: Eventium-core provides the core abstractions and utilities for building event sourcing systems in Haskell. It includes event store interfaces, command handlers, projections, event handlers, event publishers,@@ -13,8 +13,8 @@ This is the foundational package that all other Eventium modules build upon. category: Database,Eventsourcing stability: experimental-homepage: https://github.com/aleks-sidorenko/eventium#readme-bug-reports: https://github.com/aleks-sidorenko/eventium/issues+homepage: https://eventium.dev+bug-reports: https://github.com/eventium-hs/eventium/issues maintainer: Alexander Sidorenko license: MIT license-file: LICENSE.md@@ -25,7 +25,7 @@ source-repository head type: git- location: https://github.com/aleks-sidorenko/eventium+ location: https://github.com/eventium-hs/eventium flag ci description: Enable -Werror for CI builds@@ -73,7 +73,7 @@ ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wredundant-constraints -Wno-type-defaults -Wno-incomplete-uni-patterns build-depends: aeson >=1.5 && <2.3- , base >=4.9 && <5+ , base >=4.20 && <5 , containers >=0.6 && <0.8 , contravariant ==1.5.* , http-api-data >=0.4 && <0.7@@ -144,7 +144,7 @@ build-depends: HUnit , aeson >=1.5 && <2.3- , base >=4.9 && <5+ , base >=4.20 && <5 , containers >=0.6 && <0.8 , contravariant ==1.5.* , hspec