Skip to content

Commit 8d2dd46

Browse files
committed
Bumped version to 1.2.2.
1 parent f1032d0 commit 8d2dd46

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.2.2
2+
-----
3+
* Relaxed upper version bound for `transformers`.
4+
15
1.2.1
26
-----
37
* Explicitly mark `Data.StateVar` as Safe (or Trustworthy for GHC before 7.10).

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 2014-2015, Edward Kmett
2-
Copyright (c) 2009-2018, Sven Panne
2+
Copyright (c) 2009-2021, Sven Panne
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without

StateVar.cabal

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: StateVar
2-
version: 1.2.1
2+
version: 1.2.2
33
synopsis: State variables
44
description:
55
This package contains state variables, which are references in the IO monad,
66
like IORefs or parts of the OpenGL state.
77
homepage: https://github.com/haskell-opengl/StateVar
88
bug-reports: https://github.com/haskell-opengl/StateVar/issues
9-
copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2018 Sven Panne
9+
copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2021 Sven Panne
1010
license: BSD3
1111
license-file: LICENSE
1212
author: Sven Panne and Edward Kmett
@@ -26,6 +26,8 @@ tested-with:
2626
GHC == 8.6.5
2727
GHC == 8.8.4
2828
GHC == 8.10.3
29+
GHC == 8.10.4
30+
GHC == 9.0.1
2931
cabal-version: >= 1.10
3032
extra-source-files:
3133
README.md

src/Data/StateVar.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
--------------------------------------------------------------------------------
1717
-- |
1818
-- Module : Data.StateVar
19-
-- Copyright : (c) Edward Kmett 2014-2019, Sven Panne 2009-2018
19+
-- Copyright : (c) Edward Kmett 2014-2019, Sven Panne 2009-2021
2020
-- License : BSD3
2121
--
2222
-- Maintainer : Sven Panne <[email protected]>

0 commit comments

Comments
 (0)