File tree Expand file tree Collapse file tree 2 files changed +22
-9
lines changed Expand file tree Collapse file tree 2 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1
- ## next
1
+ ## 0.2.9.0
2
2
3
3
* Add ` Ord/Ord1/Ord2 ` instances.
4
- * Remove support for GHC versions before 7.8. (Thanks, Dmitry Ivanov!)
4
+
5
+ * Remove support for GHC versions before 7.8. (Thanks, Dmitry Ivanov)
6
+
5
7
* Use ` SmallArray# ` instead of ` Array# ` for GHC versions 7.10 and above.
6
- (Thanks, Dmitry Ivanov!)
8
+ (Thanks, Dmitry Ivanov)
9
+
10
+ * Adjust for ` Semigroup => Monoid ` proposal implementation.
7
11
8
12
## 0.2.8.0
9
13
Original file line number Diff line number Diff line change 1
1
name : unordered-containers
2
- version : 0.2.8 .0
2
+ version : 0.2.9 .0
3
3
synopsis : Efficient hashing-based container types
4
4
description :
5
5
Efficient hashing-based container types. The containers have been
@@ -39,15 +39,24 @@ library
39
39
Data.HashMap.UnsafeShift
40
40
41
41
build-depends :
42
- base >= 4 && < 5 ,
42
+ base >= 4.7 && < 5 ,
43
43
deepseq >= 1.1 ,
44
44
hashable >= 1.0.1.1 && < 1.3
45
45
46
+ other-extensions :
47
+ RoleAnnotations,
48
+ UnboxedTuples,
49
+ ScopedTypeVariables,
50
+ MagicHash,
51
+ BangPatterns
52
+
46
53
ghc-options : -Wall -O2 -fwarn-tabs -ferror-spans
47
- -- This is absolutely essential for correctness due to the
48
- -- referential-transparency-breaking mutability in unsafeInsertWith. See
49
- -- #147 and GHC #13615 for details.
50
- ghc-options : -feager-blackholing
54
+
55
+ if impl (ghc < 8.2 )
56
+ -- This is absolutely necessary (but not sufficient) for correctness due to
57
+ -- the referential-transparency-breaking mutability in unsafeInsertWith. See
58
+ -- #147 and GHC #13615 for details. The bug was fixed in GHC 8.2.
59
+ ghc-options : -feager-blackholing
51
60
if flag(debug)
52
61
cpp-options : -DASSERTS
53
62
You can’t perform that action at this time.
0 commit comments