From: Ian Lynagh Date: Fri, 1 Sep 2006 12:54:36 +0000 (+0000) Subject: Remove changes in packages we don't build X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=0ec575946eada8cc68d08321ffde31cb7141e874 Remove changes in packages we don't build --- diff --git a/docs/users_guide/6.6-notes.xml b/docs/users_guide/6.6-notes.xml index 1fb9a42..801c2d3 100644 --- a/docs/users_guide/6.6-notes.xml +++ b/docs/users_guide/6.6-notes.xml @@ -1298,95 +1298,6 @@ - HaXml - - - - Version number 1.16 (was 1.12.1). - - - - - There are now lazy versions of the parsing modules - Text.XML.HaXml.ParseLazy - (a lazy non-validating XML parser) and - Text.XML.HaXml.Html.ParseLazy - (a lazy HTML parser). - - - - - There are lazy versions of two of the example tools, - CanonicaliseLazy and - XtractLazy. - - - - - Text.XML.HaXml.Haskell2Xml and - Text.XML.HaXml.Xml2Haskell have been - removed, with Text.XML.HaXml.XmlContent - replacing them. - You must now use {-! derive : XmlContent !-} - rather than {-! derive :Haskell2Xml !-} - to have instances derived for your classes. - - - - - Now also provides the - Text.ParserCombinators.HuttonMeijer - monadic parser combinator library. - - - - - Provides another new set of parser combinators, as well as a lazy - variant, a variant that carries around state, and a - variant that does both. The modules are - Text.ParserCombinators.Poly, - Text.ParserCombinators.PolyLazy, - Text.ParserCombinators.PolyState and - Text.ParserCombinators.PolyStateLazy - respectively. - It also provides - Text.ParserCombinators.TextParser, which - is the Poly parser combinators - specialised for strings. - - - - - Now provides a SAX-like parser in - Text.XML.HaXml.SAX. - - - - - Now provides a module - Text.XML.HaXml.TypeMapping, which - defines an explicit representation for Haskell types. - This allows generation of a DTD from a Haskell value. - - - - - The Posn type has been pulled out from - Text.XML.HaXml.Lex into its own module - Text.XML.HaXml.Posn. Some helper - functions are also exported. - - - - - The APIs to the pre-existing modules have also substantially - changed. - - - - - - HGL @@ -1434,187 +1345,6 @@ - Japi - - - - No change. - - - - - - - monads - - - - Version number 2.0.1 (was 1.1). - - - - - In Monad.Id, run has - been renamed runId. - - - - - The Monad.BackT module has been removed; - use the new Monad.SearchT module instead. - - - - - There is a new module Monad.ForEach - containing a class ForEach, for - applying a monadic function to each element in a container. - It provides instances for [] and - Maybe. - - - - - The following combinators have been moved from - Monad.Prelude to a new module - Monad.Combinators: - (@@), - (#), - (<#), - (<##), - concatMap and - partitionM. - Monad.Combinators also defines the - following new combinators: - ifM, - whenM, - andM, - orM, - allM, - anyM, - forEach2, - forEach2_, - forEach3 and - forEach3_, and re-exports - Control.Monad. - - - - - The modules - Monad.Cont, - Monad.Except, - Monad.Reader, - Monad.State and - Monad.Writer have been removed, but their - monad transformer counterparts remain. If you want the - monads then just transform the identity monad instead. - - - - - The Monad.ExceptT module now also exports - runExceptWith and unsafeRunExcept. It also now defines an - instance ContM (ExceptT x m). - - - - - In Monad.Prelude, the - get method of the - ReaderM module has been renamed - getR. The local method - has been removed with a new class - ReadUpdM, with methods - updateR - and setR, taking its place. - The letLocal function has also been removed. - - - - - In Monad.Prelude, - update has been made a method of - StateM. - The - peek and poke methods - have been renamed get and - set respectively, and both have a default - definition in terms of update. - The poke_ function has also been renamed - set_. - - - - - In Monad.Prelude, - handle has been taken out of the - ExceptM class and put into a new - class HandlerM along with a new method - checkExcept. - There are also new functions withHandler - and handle_. - - - - - The TakeWriterM class has been renamed - CollectorM, and rather than a single - method takeFrom it has methods - censor and collect - with default definitions in terms of each other. - - - - - Monad.Prelude defines a type - Cont and functions - returnCC and cJump. - - - - - Monad.Prelude exports functions - inReader, - inWriter, - inState and - inExcept. - These make it easy to turn a pure representation of an - effectful computation into an actual computation. - - - - - The zipWith3M and - zipWith3M_ functions have been removed - from Monad.Prelude. - - - - - Monad.Prelude now re-exports - Monad.Combinators and - Monad.ForEach, but no longer re-exports - Monad. - - - - - There is a new module Monad.Transformers - which re-exports - Monad.Id, - Monad.ReaderT, - Monad.WriterT, - Monad.StateT, - Monad.ExceptT, - Monad.SearchT and - Monad.ContT. - - - - - - mtl