diff --git a/buzzard/__init__.py b/buzzard/__init__.py index fb5c440..57f28dd 100644 --- a/buzzard/__init__.py +++ b/buzzard/__init__.py @@ -2,7 +2,7 @@ IMPORTANT: When you import :code:`buzzard` for the first time, you should always do it from the main thread. """ -__version__ = "0.6.3" +__version__ = "0.6.4" # Import osgeo before cv2 import osgeo as _ diff --git a/docs/conf.py b/docs/conf.py index 5fd1d60..fe05faa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ project = 'buzzard' copyright = u'%s, Delair' % datetime.now().year author = 'Delair' -release = '0.6.3' +release = '0.6.4' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index d5ac630..5b8ea6d 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ setup( name='buzzard', - version='0.6.3', + version='0.6.4', author='ngoguey', author_email='nicolas.goguey@delair.aero', license='Apache License 2.0', @@ -62,7 +62,7 @@ long_description_content_type='text/markdown', classifiers=classifiers, url='https://github.com/airware/buzzard', - download_url='https://github.com/airware/buzzard/archive/0.6.3.tar.gz', + download_url='https://github.com/airware/buzzard/archive/0.6.4.tar.gz', keywords=['gdal gis raster shp dxf tif vector'], packages=find_packages(), install_requires=reqs,