* v0.5 -- target release date: 2006-01-24
    + Add the following functions from the Haskell Prelude:
        - zip
        - zip3
        - zipWith
        - zipWith3
        - unzip
        - unzip3

### 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
