Changeset 1138

Show
Ignore:
Timestamp:
08/22/08 21:18:38
Author:
seang
Message:

Bump versions and add change notes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Shapely/trunk/CHANGES.txt

    r1121 r1138  
    1 All tickets are children of http://trac.gispython.org/projects/PCL/ticket/ 
     1All tickets are children of http://trac.gispython.org/lab/ticket. 
     2 
     31.0.7 (2008-08-23) 
     4------------------ 
     5- Polygon rings now have the same dimensions as parent (#168). 
     6- Eliminated reference cycles in polygons (#169). 
    27 
    381.0.6 (2008-07-10) 
  • Shapely/trunk/setup.py

    r1120 r1138  
    1  
    21from setuptools import setup, Extension 
    32from sys import version_info 
     
    1211 
    1312setup(name          = 'Shapely', 
    14       version       = '1.0.6', 
     13      version       = '1.0.7', 
    1514      description   = 'Geospatial geometries, predicates, and operations', 
    1615      license       = 'BSD', 
     
    2019      maintainer    = 'Sean Gillies', 
    2120      maintainer_email  = 'sgillies@frii.com', 
    22       url   = 'http://trac.gispython.org/projects/PCL/wiki/Shapely', 
     21      url   = 'http://trac.gispython.org/lab/wiki/Shapely', 
    2322      long_description = readme_text, 
    2423      packages      = ['shapely', 'shapely.geometry'], 
     
    3635        ], 
    3736) 
    38  
  • Shapely/trunk/setup_windows.py

    r1122 r1138  
    1  
    21from setuptools import setup, Extension 
    32from sys import version_info 
     
    1211 
    1312setup(name          = 'Shapely', 
    14       version       = '1.0.6', 
     13      version       = '1.0.7', 
    1514      description   = 'Geospatial geometries, predicates, and operations', 
    1615      license       = 'BSD', 
     
    2019      maintainer    = 'Sean Gillies', 
    2120      maintainer_email  = 'sgillies@frii.com', 
    22       url   = 'http://trac.gispython.org/projects/PCL/wiki/Shapely', 
     21      url   = 'http://trac.gispython.org/lab/wiki/Shapely', 
    2322      long_description = readme_text, 
    2423      packages      = ['shapely', 'shapely.geometry'], 
     
    3736        ], 
    3837) 
    39