Skip to content

Commit e028477

Browse files
authored
Merge pull request #98 from slumnitz/rel1.1.2
Release prep for 1.1.2
2 parents 667d4d8 + 17a888c commit e028477

File tree

5 files changed

+227
-76
lines changed

5 files changed

+227
-76
lines changed

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
# Changes
22

3+
# Version 1.1.2 (2020-01-18)
4+
5+
We closed a total of 33 issues (enhancements and bug fixes) through 13 pull requests, since our last release on 2019-07-13.
6+
7+
## Issues Closed
8+
- Installation instructions; pip install fails on macOS (#88)
9+
- Usage in readme is a fragment (#90)
10+
- JOSS: missing figure captions (#92)
11+
- [DOC] update installation instruction (#96)
12+
- [DOC] add example links to README.md & figure captions in joss article (#97)
13+
- [BUG] vba_choropleth failure (#83)
14+
- BUG: Fix breakage due to mapclassify deprecation (#95)
15+
- addressing pysal/pysal#1145 & adapting testing examples (#93)
16+
- Fix docstring for plot_spatial_weights (#89)
17+
- JOSS paper submission (#59)
18+
- Fix format for multiple citations in JOSS paper (#87)
19+
- Joss paper, finalise title (#86)
20+
- [JOSS] work on `paper.md` (#62)
21+
- [ENH] change doc badge to latest doc (#85)
22+
- [BUG] require geopandas>=0.4.0,<=0.6.0rc1 for vba_choropleth testing (#84)
23+
- `plot_moran_simulation` weird dimensions (#82)
24+
- Colors are not fixed is LISA maps (#80)
25+
- Release 1.1.1 (#79)
26+
- add ipywidgets to requirements_dev.txt (#78)
27+
- add descartes to `requirements.txt` (#77)
28+
29+
## Pull Requests
30+
- [DOC] update installation instruction (#96)
31+
- [DOC] add example links to README.md & figure captions in joss article (#97)
32+
- BUG: Fix breakage due to mapclassify deprecation (#95)
33+
- addressing pysal/pysal#1145 & adapting testing examples (#93)
34+
- Fix docstring for plot_spatial_weights (#89)
35+
- Fix format for multiple citations in JOSS paper (#87)
36+
- Joss paper, finalise title (#86)
37+
- [JOSS] work on `paper.md` (#62)
38+
- [ENH] change doc badge to latest doc (#85)
39+
- [BUG] require geopandas>=0.4.0,<=0.6.0rc1 for vba_choropleth testing (#84)
40+
- Release 1.1.1 (#79)
41+
- add ipywidgets to requirements_dev.txt (#78)
42+
- add descartes to `requirements.txt` (#77)
43+
44+
The following individuals contributed to this release:
45+
46+
- Stefanie Lumnitz
47+
- Serge Rey
48+
- James Gaboardi
49+
- Martin Fleischmann
50+
- Leonardo Uieda
51+
- Levi John Wolf
52+
- Wei Kang
53+
54+
355
# Version 1.1.1 (2019-07-13)
456

557
We closed a total of 8 issues (enhancements and bug fixes) through 4 pull requests, since our last release on 2019-06-27.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy
2-
geopandas>=0.4.0,<=0.6.0rc1
2+
geopandas>=0.4.0
33
matplotlib
44
seaborn
55
libpysal

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _get_requirements_from_files(groups_files):
2626
long_description = f.read()
2727

2828
setup(name='splot', #name of package
29-
version='1.1.1',
29+
version='1.1.2',
3030
description='Visual analytics for spatial analysis with PySAL.',
3131
long_description=long_description,
3232
long_description_content_type='text/markdown',

splot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.1.1"
1+
__version__ = "1.1.2"
22
# __version__ has to be defined in the first line
33

44

0 commit comments

Comments
 (0)