Skip to content

Commit

Permalink
dep bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmett committed Mar 31, 2012
1 parent 4fb78a4 commit ea8b47b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions intern.cabal
@@ -1,6 +1,6 @@
name: intern
category: Data, Data Structures
version: 0.8
version: 0.8.0.1
license: BSD3
cabal-version: >= 1.6
license-file: LICENSE
Expand All @@ -10,15 +10,15 @@ stability: experimental
homepage: http://github.com/ekmett/intern/
copyright: Copyright (C) 2011 Edward A. Kmett
synopsis: Efficient hash-consing for arbitrary data types
description:
description:
Changes from 0.7 to 0.8
.
* Disabled cache removal as it was causing problems on large data sets. There is no good way to ensure that both references remain alive long enough to finish comparisons.
* Switched to IORef from MVar
.
Changes from 0.6 to 0.7
.
* Fixed problem where comparisons could happen between data structures while one was still a thunk, leading to equal structures comparing as inequal in limited circumstances, by appropriately using strictness annotations.
* Fixed problem where comparisons could happen between data structures while one was still a thunk, leading to equal structures comparing as inequal in limited circumstances, by appropriately using strictness annotations.
.
Efficient hash-consing for arbitrary data types
.
Expand All @@ -31,21 +31,21 @@ description:
* Added Data.Interned.IntSet

build-type: Simple
extra-source-files:
extra-source-files:
examples/Term.hs

source-repository head
type: git
location: git://github.com/ekmett/intern.git

library
build-depends:
base >= 4 && < 5,
bytestring >= 0.9.1 && < 0.10,
text >= 0.11.1.5 && < 0.12,
hashable >= 1.1.2 && < 1.2,
unordered-containers >= 0.1.4 && < 0.2,
array >= 0.3.0.2 && < 0.4
build-depends:
base >= 4 && < 5,
bytestring >= 0.9.1 && < 0.10,
text >= 0.11.1.5 && < 0.12,
hashable >= 1.1.2 && < 1.2,
unordered-containers >= 0.2.1 && < 0.3,
array >= 0.4 && < 0.5

exposed-modules:
Data.Interned
Expand All @@ -58,4 +58,4 @@ library
Data.Interned.Internal.String
Data.Interned.Internal.Text

ghc-options: -Wall
ghc-options: -Wall

0 comments on commit ea8b47b

Please sign in to comment.