Shapely 1.0.1

A bug fix release: Shapely 1.0.1. Now you can safely use highly condensed operation-chaining expressions like this one:

Python 2.5.1 (r251:54863, May  2 2007, 16:56:35)
[GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> from shapely.geometry import Point
>>> numpy.asarray(Point(0.0, 0.0).buffer(1.0).boundary.coords)
array([[  1.00000000e+00,   0.00000000e+00],
       ...
     [  1.00000000e+00,   0.00000000e+00]])