Skip to content

Commit

Permalink
Bump version to v0.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrshannon committed Jul 25, 2017
1 parent 9032458 commit 4160979
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changelog (contours)
====================

0.0.1
-----

* Curvilinear, rectilinear, and uniform grid contours.
* New output format: List of NumPy arrays.
* New output format: Single NumPy array (MATLAB style).
* New output format: List of Shapely geometry elements.
2 changes: 1 addition & 1 deletion contours/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
from .core import numpy_formatter, matlab_formatter, shapely_formatter
from .quad import QuadContourGenerator

__version__ = '0.0.1.dev0'
__version__ = '0.0.1'
19 changes: 19 additions & 0 deletions docs/releasenotes/0.0.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
0.0.1
=====

Grid Contours
-------------

The :class:`contours.quad.QuadContourGenerator` class provides an interface
into Matplotlib's contour generation algorithms for curvilinear, rectilinear,
and uniform grids.


Output Formats
--------------

Contours can be returned in 1 of 3 formats:

* List of NumPy arrays.
* Single NumPy array (MATLAB style).
* Shapely geometry elements.
1 change: 1 addition & 0 deletions docs/releasenotes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Release Notes
.. toctree::
:maxdepth: 1

0.0.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
license='MIT',
url='https://github.com/ccarocean/python-contours',
download_url=('https://github.com/ccarocean/python-contours/'
'archive/master.zip'),
'archive/v0.0.1.zip'),
long_description=long_desc,
packages=['contours'],
platforms=['any'],
Expand Down

0 comments on commit 4160979

Please sign in to comment.