diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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 (..)`.
diff --git a/apecs.cabal b/apecs.cabal
--- a/apecs.cabal
+++ b/apecs.cabal
@@ -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
diff --git a/src/Apecs/Stores/Extra.hs b/src/Apecs/Stores/Extra.hs
--- a/src/Apecs/Stores/Extra.hs
+++ b/src/Apecs/Stores/Extra.hs
@@ -22,6 +22,7 @@
 
 import Control.Monad.Reader
 import Data.Proxy
+import Data.Semigroup
 
 import Apecs.Components (MaybeStore (..))
 import Apecs.Core
