From 4930773ce057e7dae546a364e1ac5f6f07ee58b2 Mon Sep 17 00:00:00 2001 From: sablanchard Date: Thu, 1 Nov 2018 15:48:01 -0700 Subject: [PATCH] bumped version to 0.2.0 and updated history.rst --- HISTORY.rst | 12 ++++++++++++ setup.py | 2 +- urbanaccess/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 3b765cb..245419e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,15 @@ +v0.2.0 +====== + +2018/11/02 + +* Python 3 compatibility (preserving compatibility with Python 2) + * Updated demo for cross compatibility + * Added Python 3 to travis +* Support latest version of Pandana v0.4.1 (preserving compatibility with prior versions) +* Removed integration test using Great Britain dataset as data no longer available for download +* Updated readme and docs + v0.1.0 ====== diff --git a/setup.py b/setup.py index a9d12c0..032de19 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='urbanaccess', - version='0.2.dev2', + version='0.2.0', license='AGPL', description=description, long_description=long_description, diff --git a/urbanaccess/__init__.py b/urbanaccess/__init__.py index 50b4cdc..4c16e9e 100644 --- a/urbanaccess/__init__.py +++ b/urbanaccess/__init__.py @@ -9,6 +9,6 @@ from .gtfsfeeds import * from .plot import * -__version__ = "0.2.dev2" +__version__ = "0.2.0" version = __version__