Skip to content

Commit 33f00a3

Browse files
committed
Release v0.1.6
1 parent 746e3dc commit 33f00a3

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ before_install:
1111
- wget http://bit.ly/miniconda -O miniconda.sh
1212
- bash miniconda.sh -b -p $HOME/miniconda
1313
- export PATH="$HOME/miniconda/bin:$PATH"
14-
- hash -r
15-
- conda config --set always_yes yes
1614
- conda update --yes conda
17-
- conda info -a
18-
- travis_retry conda create -n test $CONDA pip jinja2 pandas mock six nose
15+
- travis_retry conda create --yes -n test $CONDA pip jinja2 pandas mock six nose
1916
- source activate test
2017
- travis_retry pip install vincent
18+
2119
install:
2220
- python setup.py install
2321

CHANGES.txt

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
1+
0.1.6
2+
~~~~~
3+
- Added Image Overlay. (andrewgiessel b625613)
4+
- All popups can take a `popup_width` keyword to adjust the width in
5+
text/HTML (ocefpaf #157).
6+
- CAVEAT! Backwards incompatibly change: the keyword `width` in popups is now
7+
`popup_width` to avoid confusion with map `width`.
8+
19
0.1.5
210
~~~~~
3-
- Popups on lines. (themiurgo)
4-
- `fit_bounds` method. (themiurgo)
11+
- Popups on lines. (themiurgo #122)
12+
- Map auto bounds. (themiurgo #134)
513
- GeoJSON popup. (ocefpaf 7aad5e0)
614
- Added cartodb positron and dark_matter tiles (ocefpaf d4daee7)
715
- Forcing HTTPS when available. (ocefpaf c69ac89)
816
- Added Stamen Watercolor tiles. (ocefpaf 8c1f837)
9-
- Added Image Overlay. (andrewgiessel ---)
17+
- Added non-pixel width and height. (ocefpaf a87a449)
18+
- Default map size is defined as non-pixel and equal to 100% of the window.
19+
(ocefpaf dcaf575)
1020

1121
Bug Fixes
1222

1323
- Draw GeoJSON first. (ocefpaf d92bdbe)
24+
- Removed keyword unnecessary `popup_on`. (themiurgo 204d722)
25+
- Fixed MapQuest Open Aerial URL. (ocefpaf 5e787fa)
1426

1527
0.1.4
1628
~~~~~

folium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import
33

4-
__version__ = '0.1.5'
4+
__version__ = '0.1.6'
55

66
from folium.folium import Map, initialize_notebook

0 commit comments

Comments
 (0)