-
Notifications
You must be signed in to change notification settings - Fork 23
coot/ghc 8.10 fix #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ library | |
| array, | ||
| mtl, | ||
|
|
||
| io-classes ^>= 1.0.0.0, | ||
| io-classes >= 1.0 && < 1.2, | ||
| si-timers, | ||
|
|
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| cabal-version: 3.0 | ||
| name: io-sim | ||
| version: 1.0.0.1 | ||
| version: 1.1.0.0 | ||
| synopsis: A pure simulator for monadic concurrency with STM. | ||
| description: | ||
| A pure simulator monad with support of concurency (base, async), stm, | ||
|
|
@@ -77,14 +77,14 @@ library | |
| ScopedTypeVariables, | ||
| TypeFamilies | ||
| build-depends: base >=4.9 && <4.19, | ||
| io-classes ^>=1.0, | ||
| io-classes ^>=1.1, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did this because |
||
| exceptions >=0.10, | ||
| containers, | ||
| nothunks, | ||
| parallel, | ||
| psqueues >=0.2 && <0.3, | ||
| strict-stm ^>=1.0, | ||
| si-timers ^>=1.0, | ||
| strict-stm >=1.0 && <1.2, | ||
| si-timers >=1.0 && <1.2, | ||
| time >=1.9.1 && <1.13, | ||
| quiet, | ||
| QuickCheck, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| # Changelog | ||
|
|
||
| ## 1.1.0.0 | ||
|
|
||
| ### Non breaking changes | ||
|
|
||
| * `io-classes-1.1.0.0` | ||
|
|
||
| ## 1.0.0.1 | ||
|
|
||
| ### Non breaking changes | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| cabal-version: 3.0 | ||
| name: si-timers | ||
| version: 1.0.0.1 | ||
| version: 1.1.0.0 | ||
| synopsis: timers using SI units (seconds) | ||
| description: | ||
| Timers using SI units (seconds) which are safe on 32-bit platforms and | ||
|
|
@@ -59,7 +59,7 @@ library | |
| stm, | ||
| time >=1.9.1 && <1.13, | ||
|
|
||
| io-classes ^>=1.0 | ||
| io-classes >=1.0 && <1.2 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is the only change made to the package between
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do release |
||
| if flag(asserts) | ||
| ghc-options: -fno-ignore-asserts | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| # Revsion history of strict-mvar | ||
|
|
||
| ## 1.1.0.0 | ||
|
|
||
| ### Non breaking changes | ||
|
|
||
| * `io-classes-1.1.0.0` | ||
|
|
||
|
Comment on lines
+3
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ## 1.0.0.1 | ||
|
|
||
| ### Non breaking changes | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no changelog entry for this change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, because I will just add a revision on hackage, no need to bump its version.