Skip to content

Commit

Permalink
preparing 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wbierbower committed Apr 21, 2015
1 parent 89043f6 commit e1e4516
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

0.2.0 (2015-04-21)
------------------

* Local math operations added to Raster class, intergrated with Pygeoprocessing

0.1.1 (2015-03-15)
---------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A python library that generates simple OSGeo-supported rasters and vectors. The
Requirements
------------

fauxgeo 0.1.5 requires
fauxgeo 0.2.0 requires

* NumPy
* Matplotlib
Expand Down Expand Up @@ -99,7 +99,7 @@ The Raster Class
raster4 = 4.5 - raster3
raster4 = raster3 ** 4.5
raster2 = raster3.minimum(raster2)
raster4 = raster3.minimum(raster2)
# returns base rasters with same nodata and datatype
zeros_raster = raster3.zeros()
Expand Down
2 changes: 1 addition & 1 deletion fauxgeo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from raster_factory import *
from vector import *

__version__ = '0.1.5'
__version__ = '0.2.0'
Empty file removed fauxgeo/vector_factory.py
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

setup(
name='fauxgeo',
version='0.1.5',
version='0.2.0',
description='A python library that generates fake geospatial data',
long_description=readme + '\n\n' + history,
author='Will B',
Expand Down

0 comments on commit e1e4516

Please sign in to comment.