Skip to content

Commit aa7a8eb

Browse files
committed
Version bump to 1.1.0. Update Changelog. Update package metadata.
1 parent df533d4 commit aa7a8eb

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

Changelog

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
version 1.0.8 (not yet released)
1+
version 1.1.0 (git tag v1.1.0rel)
22
--------------------------------
3-
* removes inline pyshp and pyproj code and uses makes these packages required
4-
external dependencies (handling issue 230).
3+
* pyshp/pyproj are now external dependencies (PR #234)
4+
* Proper clipping of plots regardless of projection (issue 175)
5+
* drawmapscale() supports "feet" as an input unit (PR 289)
6+
* nightshade() supports datetime timezone-aware datetime objects
7+
as long as the timezone is UTC. Still assumes timezone-naive
8+
objects are UTC as well. (issue 272)
9+
* Properly perform input validation/casting (issue 260)
10+
* Support newer versions of OWSLib (PR 259)
11+
* Use integer indexes (PR #246)
12+
* Stop ResourceWarnings for unclosed files in py3k (PR #244)
513
* add 'textcolor' kwarg to drawmeridians and drawparallels (issue 145).
614
* don't assume grid is regular when adding cyclic point in addcyclic.
715
New kwargs 'axis' and 'cyclic' added. More than one array

lib/mpl_toolkits/basemap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
else:
4848
basemap_datadir = os.sep.join([os.path.dirname(__file__), 'data'])
4949

50-
__version__ = '1.0.8'
50+
__version__ = '1.1.0'
5151

5252
# module variable that sets the default value for the 'latlon' kwarg.
5353
# can be set to True by user so plotting functions can take lons,lats

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,22 @@ def checkversion(GEOS_dir):
115115
"pyshp >= 1.2.0"
116116
]
117117

118-
__version__ = "1.0.8"
118+
__version__ = "1.1.0"
119119
setup(
120120
name = "basemap",
121121
version = __version__,
122122
description = "Plot data on map projections with matplotlib",
123123
long_description = """
124124
An add-on toolkit for matplotlib that lets you plot data
125125
on map projections with coastlines, lakes, rivers and political boundaries.
126-
See http://www.scipy.org/wikis/topical_software/Maps for an
127-
example of what it can do.""",
128-
url = "http://matplotlib.sourceforge.net/toolkits.html",
129-
download_url = "https://downloads.sourceforge.net/project/matplotlib/matplotlib-toolkits/basemap-{0}/basemap-{0}.tar.gz".format(__version__),
126+
See http://matplotlib.org/basemap/users/examples.html for
127+
examples of what it can do.""",
128+
url = "http://matplotlib.org/basemap/",
129+
download_url = "https://github.com/matplotlib/basemap/archive/v{0}rel.tar.gz".format(__version__),
130130
author = "Jeff Whitaker",
131131
author_email = "jeffrey.s.whitaker@noaa.gov",
132+
maintainer = "Ben Root",
133+
maintainer_email = "ben.v.root@gmail.com",
132134
install_requires = requirements,
133135
platforms = ["any"],
134136
license = "OSI Approved",

0 commit comments

Comments
 (0)