Repository : ssh://darcs.haskell.org//srv/darcs/packages/bytestring On branch : master
http://hackage.haskell.org/trac/ghc/changeset/f83f261525e4cb0cf543113bf940cdc01675b63e >--------------------------------------------------------------- commit f83f261525e4cb0cf543113bf940cdc01675b63e Author: Duncan Coutts <[email protected]> Date: Wed Nov 16 20:45:47 2011 +0000 Do not expose the BasicEncoding and other internals for this release We are being conservative here. There is useful functionality that we will want to expose somehow eventually, including the fixed and bounded size encodings for maximum speed of short encodings, plus the ability to do things like size-prefixed runs of data. However we will give ourselves some time to let this stuff settle down and a bit longer to think about the best way to support the more advanced & low-level bits. >--------------------------------------------------------------- bytestring.cabal | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bytestring.cabal b/bytestring.cabal index 7bc0753..c2f6316 100644 --- a/bytestring.cabal +++ b/bytestring.cabal @@ -74,14 +74,15 @@ library Data.ByteString.Lazy.Builder Data.ByteString.Lazy.Builder.Extras Data.ByteString.Lazy.Builder.ASCII - Data.ByteString.Lazy.Builder.BasicEncoding - -- exposed but not haddocked - Data.ByteString.Lazy.Builder.BasicEncoding.Extras + other-modules: + -- these three modules should be exposed in a future + -- release once we're confident the API is stable. Data.ByteString.Lazy.Builder.Internal + Data.ByteString.Lazy.Builder.BasicEncoding + Data.ByteString.Lazy.Builder.BasicEncoding.Extras Data.ByteString.Lazy.Builder.BasicEncoding.Internal - other-modules: Data.ByteString.Lazy.Builder.BasicEncoding.Binary Data.ByteString.Lazy.Builder.BasicEncoding.ASCII Data.ByteString.Lazy.Builder.BasicEncoding.Internal.Floating _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
