Update to 0.2.2
CHANGES: * 0.2.2 (14 April 2013) - Add 'dropInnerBlanks' combinator for dropping blank chunks between consecutive delimiters while still keeping the delimiters separate. * 0.2.1.3 (28 March 2013) - bump upper bound to allow base-4.7 * 0.2.1.2 (28 January 2013) - Patch from Daniel Wagner to make splitting lazier when using keepDelimsR. Previously nothing was output until encountering a delimiter; now it can start outputting a Text chunk before reaching a delimiter. * 0.2.1.1 (24 September 2012) - Update this CHANGES file with details from the past two releases. * 0.2.1.0 (24 September 2012) - Go back to generic definition of 'build' (reverses change introduced in 0.1.4.3), for simplicity and Haskell2010 compliance. * 0.2.0.0 (21 August 2012) - test with GHC 7.6.1 and bump base dependency to allow base-4.6 - deprecate synonyms: sepBy, sepByOneOf, unintercalate, chunk - rename splitEvery to chunksOf - unify Delimiter definition, and get rid of GADTs extension * 0.1.4.3 (7 June 2012) - Import 'build' function from GHC.Exts instead of defining it by hand, which can lead to some speedups (since GHC has special rewriting rules for the version in GHC.Exts). Of course this ties it to GHC; if you want to build split under some other compiler, let me know and I can add some CPP directives to define 'build' conditionally. - Remove unnecessary Rank2Types extension.
This commit is contained in:
parent
1d672cdc52
commit
23749c86e5
3 changed files with 8 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.2 2012/03/11 07:00:57 phonohawk Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2013/08/17 20:02:53 szptvlfn Exp $
|
||||
#
|
||||
|
||||
DISTNAME= split-0.1.4.2
|
||||
DISTNAME= split-0.2.2
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= pho@cielonegro.org
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
# $NetBSD: buildlink3.mk,v 1.2 2012/03/11 07:00:57 phonohawk Exp $
|
||||
# $NetBSD: buildlink3.mk,v 1.3 2013/08/17 20:02:54 szptvlfn Exp $
|
||||
|
||||
BUILDLINK_TREE+= hs-split
|
||||
|
||||
.if !defined(HS_SPLIT_BUILDLINK3_MK)
|
||||
HS_SPLIT_BUILDLINK3_MK:=
|
||||
|
||||
BUILDLINK_API_DEPENDS.hs-split+= hs-split>=0.1.4
|
||||
BUILDLINK_API_DEPENDS.hs-split+= hs-split>=0.2.2
|
||||
BUILDLINK_PKGSRCDIR.hs-split?= ../../wip/hs-split
|
||||
.endif # HS_SPLIT_BUILDLINK3_MK
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.2 2012/03/11 07:00:57 phonohawk Exp $
|
||||
$NetBSD: distinfo,v 1.3 2013/08/17 20:02:54 szptvlfn Exp $
|
||||
|
||||
SHA1 (split-0.1.4.2.tar.gz) = e6466bbe136e92bba9ec104d93e9eea197d5c290
|
||||
RMD160 (split-0.1.4.2.tar.gz) = 50735e5f69c3265921a68372b58624a28f85d9cf
|
||||
Size (split-0.1.4.2.tar.gz) = 12665 bytes
|
||||
SHA1 (split-0.2.2.tar.gz) = c5aa04f033846058a96450e7720268348c13d928
|
||||
RMD160 (split-0.2.2.tar.gz) = 7d4fe221283836386807f0e73a90df1255061f6f
|
||||
Size (split-0.2.2.tar.gz) = 14666 bytes
|
||||
|
|
Loading…
Reference in a new issue