diff --git a/CHANGES.md b/CHANGES.md index e69de29..9c45867 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -0,0 +1,8 @@ +# v0.1 # +- Initial version pulled out of pytesmo +- added support for iterables like lists and numpy arrays to functions like +find_nearest_gpi. numpy arrays should work everywhere if you want to get +information from a grid. see issue #3 and #4 +- fixed bugs occuring during storage as netCDF file see issue #8 +- comparison of grids is no longer using exact float comparison, see issue #9 +- added documentation and examples for working with the grid objects, see issue #1 diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..9035cd1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +recursive-include tests *.py +recursive-include docs *.rst *.py +include *.md \ No newline at end of file