diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0c2f8f3..22de2f0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,13 @@ +v0.2.2 +====== + +2020/11/09 + +* allows passing matplotlib axes to urbanaccess.plot.plot_net() +* adds flexibility to calendar/date handling (calendar_dates.txt now supported) +* improves GTFS downloading (solves issue where requests were rejected due to missing user agent header) +* improves text encoding support + v0.2.1 ====== diff --git a/docs/source/conf.py b/docs/source/conf.py index f365eb5..a073f17 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,8 +30,8 @@ project = u'UrbanAccess' author = u'UrbanSim Inc.' copyright = u'{}, {}'.format(datetime.now().year, author) -version = u'0.2.1' -release = u'0.2.1' +version = u'0.2.2' +release = u'0.2.2' language = None # List of patterns to ignore when looking for source files. diff --git a/docs/source/index.rst b/docs/source/index.rst index 5b6133a..3c6cec9 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -3,7 +3,7 @@ UrbanAccess A tool for computing GTFS transit and OSM pedestrian networks for accessibility analysis. -v0.2.1, released August 28, 2020. +v0.2.2, released November 9, 2020. Contents -------- diff --git a/setup.py b/setup.py index 1e75e96..297359e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='urbanaccess', - version='0.2.1', + version='0.2.2', license='AGPL', description=description, long_description=long_description, diff --git a/urbanaccess/__init__.py b/urbanaccess/__init__.py index c45aee2..4c015c1 100644 --- a/urbanaccess/__init__.py +++ b/urbanaccess/__init__.py @@ -9,6 +9,6 @@ from .gtfsfeeds import * from .plot import * -__version__ = "0.2.1" +__version__ = "0.2.2" version = __version__