Skip to content

Commit

Permalink
Merge pull request #204 from bird-house/release_0.8.0
Browse files Browse the repository at this point in the history
Release 0.8.0
  • Loading branch information
huard authored May 25, 2021
2 parents 81d69a7 + 2e34cfe commit b63b7a4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
10 changes: 7 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
Change History
**************

0.7.1 (unreleased)
0.8.0 (2021-05-25)
==================

Changes:

* Added a converter for loading GeoTIFF using xarray/rioxarray (#193).
* Update notebook process forms. See `client.gui` function.
* Add support for Path objects in `utils.guess_type`
* Support multiple mimetypes in converters. API change: mimetype (str) replaced by mimetypes (tuple)
* Add support for Path objects in `utils.guess_type`.
* Support multiple mimetypes in converters.
* Removed geojson mimetypes from BINARY_MIMETYPES so it's embedded as a string rather than bytes.

API changes:

* `mimetype` (str) replaced by `mimetypes` (tuple) in `client.converters.BaseConverter`.


0.7.0 (2021-01-15)
==================
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ You can try Birdy online using Binder (just click on the binder link below),
or view the notebooks on NBViewer.

.. image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.7.0?filepath=notebooks
:target: https://mybinder.org/v2/gh/bird-house/birdy.git/v0.8.0?filepath=notebooks
:alt: Binder Launcher

.. image:: https://raw.githubusercontent.com/jupyter/design/master/logos/Badges/nbviewer_badge.svg
:target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.7.0/notebooks/
:target: https://nbviewer.jupyter.org/github/bird-house/birdy/tree/v0.8.0/notebooks/
:alt: NBViewer
:height: 20

Expand Down
2 changes: 1 addition & 1 deletion birdy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# noqa: D100, D104

__version__ = "0.7.0"
__version__ = "0.8.0"

from .client import WPSClient
from .ipyleafletwfs import IpyleafletWFS # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
# The short X.Y version.
version = ""
# The full version, including alpha/beta/rc tags.
release = "0.7.0"
release = "0.8.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0
current_version = 0.8.0
commit = True
tag = True

Expand All @@ -22,13 +22,13 @@ replace = {new_version}
python_files = test_*.py
testpaths = tests
addopts = --strict --tb=native
markers =
markers =
online: mark test to need internet connection
slow: mark test to be slow

[flake8]
max-line-length = 120
exclude =
exclude =
.git,
__pycache__,
docs,
Expand All @@ -41,3 +41,4 @@ exclude =
[doc8]
ignore-path = docs/build,docs/source/_templates,docs/source/_static
max-line-length = 120

0 comments on commit b63b7a4

Please sign in to comment.