list-tries 0.1 → 0.2
raw patch · 3 files changed
+12/−9 lines, 3 filesdep ~basedep ~dlistPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, dlist
API changes (from Hackage documentation)
Files
- CHANGELOG.txt +3/−0
- LICENSE.txt +1/−1
- list-tries.cabal +8/−8
CHANGELOG.txt view
@@ -1,3 +1,6 @@+2010-04-06, 0.2:+ Dependency update, nothing more.+ 2009-07-05, 0.1: All tries are now instances of Binary, thanks to Gregory Crosswhite. Adds a dependency on the 'binary' library as well as the following two methods to
LICENSE.txt view
@@ -2,7 +2,7 @@ are held by whoever wrote the code in question: see CREDITS.txt for a list of authors. -Copyright (c) 2008-2009 <authors>+Copyright (c) 2008-2010 <authors> All rights reserved. Redistribution and use in source and binary forms, with or without
list-tries.cabal view
@@ -1,7 +1,7 @@ Cabal-Version: >= 1.6 Name: list-tries-Version: 0.1+Version: 0.2 Homepage: http://iki.fi/matti.niemenmaa/list-tries/ Synopsis: Tries and Patricia tries: finite sets and maps for list keys Category: Data, Data Structures@@ -39,22 +39,22 @@ Flag containers03 Description: Assume that containers has a version number of at least 0.3. If false, some functionality cannot be implemented and is changed- to call 'error' instead. Defaults to False as such a version- hasn't yet been released.- Default: False+ to call 'error' instead. Defaults to True, as >= 0.3 is shipped+ with GHC 6.12.+ Default: True Library Extensions: CPP if flag(containers03)- Build-Depends: base >= 3 && < 4.1+ Build-Depends: base >= 3 && < 4.3 , containers >= 0.3 && < 0.4- , dlist == 0.4.*+ , dlist >= 0.4 && < 0.6 , binary >= 0.5 && < 0.6 else- Build-Depends: base >= 3 && < 4.1+ Build-Depends: base >= 3 && < 4.3 , containers >= 0.2 && < 0.3- , dlist == 0.4.*+ , dlist >= 0.4 && < 0.6 , binary >= 0.5 && < 0.6 Exposed-Modules: Data.ListTrie.Base.Map