From e420e00e41f1c8fb92a00f24194b8501b12a694f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Fri, 24 Aug 2018 14:07:31 +0200 Subject: [PATCH] Prepare release 0.5.0 --- CHANGES.txt | 10 ++++++++++ doc/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index ef2589da..24d51339 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,16 @@ GeoAlchemy 2 Changelog ====================== +0.5.0 +----- + +* Add support for function ST_Azimuth @simlmx (#175) +* Remove Python 3.3 from the test matrix @elemoine (#179) +* Correct spelling mistakes @EdwardBetts @elemoine (#180) +* Make WKTElement and WKBElement pickable @elemoine (#182) +* Add SpatiaLite support @elemoine (#181) +* Fix to_shape with SpatiaLite @elemoine (#185) + 0.4.2 ----- diff --git a/doc/conf.py b/doc/conf.py index eac23ae1..07749cb2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,9 +49,9 @@ # built documents. # # The short X.Y version. -version = '0.4.2' +version = '0.5.0' # The full version, including alpha/beta/rc tags. -release = '0.4.2' +release = '0.5.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index b02c4b1e..2431ed5e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -version = '0.4.2' +version = '0.5.0' setup( name='GeoAlchemy2',