Skip to content

Commit b63b7a4

Browse files
authored
Merge pull request #204 from bird-house/release_0.8.0
Release 0.8.0
2 parents 81d69a7 + 2e34cfe commit b63b7a4

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGES.rst

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
Change History
22
**************
33

4-
0.7.1 (unreleased)
4+
0.8.0 (2021-05-25)
55
==================
66

77
Changes:
88

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

15+
API changes:
16+
17+
* `mimetype` (str) replaced by `mimetypes` (tuple) in `client.converters.BaseConverter`.
18+
1519

1620
0.7.0 (2021-01-15)
1721
==================

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ You can try Birdy online using Binder (just click on the binder link below),
3333
or view the notebooks on NBViewer.
3434

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

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

birdy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# noqa: D100, D104
22

3-
__version__ = "0.7.0"
3+
__version__ = "0.8.0"
44

55
from .client import WPSClient
66
from .ipyleafletwfs import IpyleafletWFS # noqa: F401

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
# The short X.Y version.
8080
version = ""
8181
# The full version, including alpha/beta/rc tags.
82-
release = "0.7.0"
82+
release = "0.8.0"
8383

8484
# The language for content autogenerated by Sphinx. Refer to documentation
8585
# for a list of supported languages.

setup.cfg

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.0
2+
current_version = 0.8.0
33
commit = True
44
tag = True
55

@@ -22,13 +22,13 @@ replace = {new_version}
2222
python_files = test_*.py
2323
testpaths = tests
2424
addopts = --strict --tb=native
25-
markers =
25+
markers =
2626
online: mark test to need internet connection
2727
slow: mark test to be slow
2828

2929
[flake8]
3030
max-line-length = 120
31-
exclude =
31+
exclude =
3232
.git,
3333
__pycache__,
3434
docs,
@@ -41,3 +41,4 @@ exclude =
4141
[doc8]
4242
ignore-path = docs/build,docs/source/_templates,docs/source/_static
4343
max-line-length = 120
44+

0 commit comments

Comments
 (0)