Skip to content

Commit 87142a8

Browse files
authored
Merge pull request #103 from slumnitz/release1.1.3
Release1.1.3
2 parents bf51c2e + 6a67480 commit 87142a8

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

CHANGELOG.md

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

3+
# Version 1.1.3 (2020-03-18)
4+
5+
We closed a total of 15 issues (enhancements and bug fixes) through 6 pull requests, since our last release on 2020-01-18.
6+
7+
## Issues Closed
8+
- add permanent links to current version of no's to joss paper (#102)
9+
- [BUG] set colors as list in _plot_choropleth_fig() (#101)
10+
- Remove the links around figures in the JOSS paper (#99)
11+
- Release prep for 1.1.2 (#98)
12+
- Installation instructions; pip install fails on macOS (#88)
13+
- Usage in readme is a fragment (#90)
14+
- JOSS: missing figure captions (#92)
15+
- [DOC] update installation instruction (#96)
16+
- [DOC] add example links to README.md & figure captions in joss article (#97)
17+
18+
## Pull Requests
19+
- add permanent links to current version of no's to joss paper (#102)
20+
- [BUG] set colors as list in _plot_choropleth_fig() (#101)
21+
- Remove the links around figures in the JOSS paper (#99)
22+
- Release prep for 1.1.2 (#98)
23+
- [DOC] update installation instruction (#96)
24+
- [DOC] add example links to README.md & figure captions in joss article (#97)
25+
26+
The following individuals contributed to this release:
27+
28+
- Stefanie Lumnitz
29+
- Levi John Wolf
30+
- Leonardo Uieda
31+
- Serge Rey
32+
333
# Version 1.1.2 (2020-01-18)
434

535
We closed a total of 33 issues (enhancements and bug fixes) through 13 pull requests, since our last release on 2019-07-13.

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
from setuptools import setup
22
from os import path
33

4+
package = "splot"
5+
6+
# Get __version__ from package/__init__.py
7+
with open(package + "/__init__.py", "r") as f:
8+
exec(f.readline())
9+
410
def _get_requirements_from_files(groups_files):
511
groups_reqlist = {}
612

@@ -25,8 +31,8 @@ def _get_requirements_from_files(groups_files):
2531
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
2632
long_description = f.read()
2733

28-
setup(name='splot', #name of package
29-
version='1.1.2',
34+
setup(name=package, #name of package
35+
version=__version__,
3036
description='Visual analytics for spatial analysis with PySAL.',
3137
long_description=long_description,
3238
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.2"
1+
__version__ = "1.1.3"
22
# __version__ has to be defined in the first line
33

44

0 commit comments

Comments
 (0)