Skip to content

Commit

Permalink
Merge pull request #98 from UDST/new-release
Browse files Browse the repository at this point in the history
New release v0.4.1
  • Loading branch information
sablanchard authored Sep 17, 2018
2 parents c578b03 + e168061 commit 46d5a76
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v0.4.1
======

2018/7/30

* Documentation fixes.
* Replaced uses of std::map::at() since it's not supported in pre-C++11 compilers.
* Replaced initialization lists due to the same reason as above.

v0.4.0
======

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4.0'
version = '0.4.1'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pandana/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .network import Network

version = __version__ = '0.4.0'
version = __version__ = '0.4.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(self):
extra_compile_args += ['-D NO_TR1_MEMORY']
extra_compile_args += ['-stdlib=libc++']

version = '0.4.0'
version = '0.4.1'

# read long description from README
with open('README.rst', 'r') as f:
Expand Down

0 comments on commit 46d5a76

Please sign in to comment.