* v0.5 -- target release date: 2006-02-06
    + Add a complementary module implemented in C for speed
    + Make all functional.* functions strict (ie, list-producing);
        add a functional.lazy submodule to contain lazy versions
        
    DONE:
    + Drop the following functions:
        - iterate
        - foldl1
        - foldr1
        - scanr1
        - scanl1
        - drop
        - dropWhile
        - take
        - takeWhile
        - cycle
        - repeat
        - splitAt

### Anything above here is a roadmap
### Anything below here is the actual changelog

* v0.4 -- released: 2006-01-22
    + Add the following functions from the Haskell Prelude:
        - id
        - concat
        - concatMap
        - splitAt
        - compose
    + Add an examples.py file, showing how to use some of these functions

* v0.3 -- released: 2006-01-22
    + Add the following functions from the Haskell Prelude:    
		- repeat
		- cycle
		- iterate
        - take
        - drop
        - flip
        - takeWhile
        - dropWhile

* v0.2 -- released: 2006-01-21
    + Add the following functions from the Haskell Prelude:
        - foldl1
        - foldr1
        - scanl
		- scanr
  		- scanl1
		- scanr1

* v0.1 -- released: 2006-01-19
	+ Initial release. We start off with the functions:
		- partial - partial function application
		- foldl
		- foldr
