diff --git a/CHANGELOG.md b/CHANGELOG.md index aadf565..e872f07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.2.2 +----- +* Relaxed upper version bound for `transformers`. + 1.2.1 ----- * Explicitly mark `Data.StateVar` as Safe (or Trustworthy for GHC before 7.10). diff --git a/LICENSE b/LICENSE index f1a988d..e71299b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Copyright (c) 2014-2015, Edward Kmett -Copyright (c) 2009-2018, Sven Panne +Copyright (c) 2009-2021, Sven Panne All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/StateVar.cabal b/StateVar.cabal index 33bfa30..553ee3b 100644 --- a/StateVar.cabal +++ b/StateVar.cabal @@ -1,12 +1,12 @@ name: StateVar -version: 1.2.1 +version: 1.2.2 synopsis: State variables description: This package contains state variables, which are references in the IO monad, like IORefs or parts of the OpenGL state. homepage: https://github.com/haskell-opengl/StateVar bug-reports: https://github.com/haskell-opengl/StateVar/issues -copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2018 Sven Panne +copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2021 Sven Panne license: BSD3 license-file: LICENSE author: Sven Panne and Edward Kmett @@ -26,6 +26,8 @@ tested-with: GHC == 8.6.5 GHC == 8.8.4 GHC == 8.10.3 + GHC == 8.10.4 + GHC == 9.0.1 cabal-version: >= 1.10 extra-source-files: README.md diff --git a/src/Data/StateVar.hs b/src/Data/StateVar.hs index 5c247be..2f237fe 100644 --- a/src/Data/StateVar.hs +++ b/src/Data/StateVar.hs @@ -16,7 +16,7 @@ -------------------------------------------------------------------------------- -- | -- Module : Data.StateVar --- Copyright : (c) Edward Kmett 2014-2019, Sven Panne 2009-2018 +-- Copyright : (c) Edward Kmett 2014-2019, Sven Panne 2009-2021 -- License : BSD3 -- -- Maintainer : Sven Panne