Skip to content

Commit

Permalink
Merge pull request #81 from UDST/release-prep
Browse files Browse the repository at this point in the history
Preparing v0.2.2 release
  • Loading branch information
smmaurer authored Nov 11, 2020
2 parents 3475577 + d3b2d29 commit 605fe9f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
======

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='urbanaccess',
version='0.2.1',
version='0.2.2',
license='AGPL',
description=description,
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion urbanaccess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
from .gtfsfeeds import *
from .plot import *

__version__ = "0.2.1"
__version__ = "0.2.2"

version = __version__

0 comments on commit 605fe9f

Please sign in to comment.