Skip to content

Commit b1b9811

Browse files
authored
Merge pull request #111 from input-output-hk/coot/release
Release io-sim & friends version 1.2.0.0
2 parents 9e96664 + 871d9c0 commit b1b9811

File tree

13 files changed

+46
-36
lines changed

13 files changed

+46
-36
lines changed

.github/workflows/checks.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Cheks
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
merge_group:
8+
9+
jobs:
10+
11+
check-changelogs:
12+
name: changelogs
13+
runs-on: ubuntu-latest
14+
defaults:
15+
run:
16+
shell: bash
17+
18+
steps:
19+
- name: Install dependencies
20+
run: sudo apt install -y fd-find
21+
22+
- uses: actions/checkout@v3
23+
24+
- name: git fetch
25+
run: git fetch origin main:main
26+
27+
- name: Check changelogs
28+
run: ./scripts/check-changelogs.sh
29+

.github/workflows/haskell.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -188,22 +188,3 @@ jobs:
188188
run: |
189189
./scripts/check-stylish.sh
190190
git diff --exit-code
191-
192-
check-changelogs:
193-
name: Check changelogs
194-
runs-on: ubuntu-latest
195-
defaults:
196-
run:
197-
shell: bash
198-
199-
steps:
200-
- name: Install dependencies
201-
run: sudo apt install -y fd-find
202-
203-
- uses: actions/checkout@v3
204-
205-
- name: git fetch
206-
run: git fetch origin main:main
207-
208-
- name: Check changelogs
209-
run: ./scripts/check-changelogs.sh

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ library
4444
array,
4545
mtl,
4646

47-
io-classes >= 1.0 && < 1.2,
47+
io-classes >= 1.0 && < 1.3,
4848
si-timers,
4949

5050

io-classes/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revsion history of io-classes
22

3-
## next version
3+
## 1.2.0.0
44

55
### Non-breaking changes
66

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.1.0.0
3+
version: 1.2.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revsion history of io-sim
22

3-
## next version
3+
## 1.2.0.0
44

55
### Breaking changes
66

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.1.0.0
3+
version: 1.2.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,
@@ -75,15 +75,15 @@ library
7575
ScopedTypeVariables,
7676
TypeFamilies
7777
build-depends: base >=4.9 && <4.19,
78-
io-classes ^>=1.1,
78+
io-classes ^>=1.2,
7979
exceptions >=0.10,
8080
containers,
8181
deepseq,
8282
nothunks,
8383
parallel,
8484
psqueues >=0.2 && <0.3,
85-
strict-stm >=1.0 && <1.2,
86-
si-timers >=1.0 && <1.2,
85+
strict-stm ^>=1.2,
86+
si-timers ^>=1.2,
8787
time >=1.9.1 && <1.13,
8888
quiet,
8989
QuickCheck,

si-timers/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## next
3+
## 1.2.0.0
44

55
## Non breaking changes
66

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.1.0.0
3+
version: 1.2.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 && <1.2
62+
io-classes ^>=1.2
6363
if flag(asserts)
6464
ghc-options: -fno-ignore-asserts
6565

strict-mvar/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revsion history of strict-mvar
22

3-
## next version
3+
## 1.2.0.0
44

55
### Breaking changes
66

0 commit comments

Comments
 (0)