Skip to content

Commit df0ddc9

Browse files
committed
version 1.1.0.0
1 parent cb84db9 commit df0ddc9

File tree

11 files changed

+40
-14
lines changed

11 files changed

+40
-14
lines changed

io-classes-mtl/io-classes-mtl.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ library
4646
array,
4747
mtl,
4848

49-
io-classes ^>= 1.0.0.0,
49+
io-classes >= 1.0 && < 1.2,
5050
si-timers,
5151

5252

io-classes/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Revsion history of io-classes
22

3-
## Next version
3+
## 1.1.0.0
44

55
### Breaking changes
66

77
* `Control.Monad.Class.MonadMVar` is now deprecated in favour of
88
`Control.Concurrent.Class.MonadMVar`.
99

10+
### Non breaking changes
11+
12+
* Fixed building haddocks with `ghc-8.10`.
13+
1014
## 1.0.0.1
1115

1216
### Non breaking changes

io-classes/io-classes.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: io-classes
3-
version: 1.0.0.1
3+
version: 1.1.0.0
44
synopsis: Type classes for concurrency with STM, ST and timing
55
description:
66
IO Monad class hierarchy compatible with

io-sim/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revsion history of io-sim
22

3+
## 1.1.0.0
4+
5+
### Non breaking changes
6+
7+
* `io-classes-1.1.0.0`
8+
39
## 1.0.0.1
410

511
### Non breaking changes

io-sim/io-sim.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: io-sim
3-
version: 1.0.0.1
3+
version: 1.1.0.0
44
synopsis: A pure simulator for monadic concurrency with STM.
55
description:
66
A pure simulator monad with support of concurency (base, async), stm,
@@ -77,14 +77,14 @@ library
7777
ScopedTypeVariables,
7878
TypeFamilies
7979
build-depends: base >=4.9 && <4.19,
80-
io-classes ^>=1.0,
80+
io-classes ^>=1.1,
8181
exceptions >=0.10,
8282
containers,
8383
nothunks,
8484
parallel,
8585
psqueues >=0.2 && <0.3,
86-
strict-stm ^>=1.0,
87-
si-timers ^>=1.0,
86+
strict-stm >=1.0 && <1.2,
87+
si-timers >=1.0 && <1.2,
8888
time >=1.9.1 && <1.13,
8989
quiet,
9090
QuickCheck,

si-timers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.1.0.0
4+
5+
### Non breaking changes
6+
7+
* `io-classes-1.1.0.0`
8+
39
## 1.0.0.1
410

511
### Non breaking changes

si-timers/si-timers.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: si-timers
3-
version: 1.0.0.1
3+
version: 1.1.0.0
44
synopsis: timers using SI units (seconds)
55
description:
66
Timers using SI units (seconds) which are safe on 32-bit platforms and
@@ -59,7 +59,7 @@ library
5959
stm,
6060
time >=1.9.1 && <1.13,
6161

62-
io-classes ^>=1.0
62+
io-classes >=1.0 && <1.2
6363
if flag(asserts)
6464
ghc-options: -fno-ignore-asserts
6565

strict-mvar/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Revsion history of strict-mvar
22

3+
## 1.1.0.0
4+
5+
### Non breaking changes
6+
7+
* `io-classes-1.1.0.0`
8+
39
## 1.0.0.1
410

511
### Non breaking changes

strict-mvar/strict-mvar.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: strict-mvar
3-
version: 1.0.0.1
3+
version: 1.1.0.0
44
synopsis: Strict MVars for IO and IOSim
55
description:
66
Strict @MVar@ interface compatible with
@@ -35,7 +35,7 @@ library
3535
exposed-modules: Control.Concurrent.Class.MonadMVar.Strict
3636
default-language: Haskell2010
3737
build-depends: base >= 4.9 && <4.19,
38-
io-classes ^>= 1.0
38+
io-classes >= 1.0 && <1.2
3939
ghc-options: -Wall
4040
-Wno-unticked-promoted-constructors
4141
-Wcompat

strict-stm/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Changelog
22

3-
## next version
3+
## 1.1.0.0
44

55
### Breaking changes
66

77
* Removed deprecated API
88

9+
### Non breaking changes
10+
11+
* `io-classes-1.1.0.0`
12+
913
## 1.0.0.1
1014

1115
### Non breaking changes

0 commit comments

Comments
 (0)