Skip to content

Commit a8c0e86

Browse files
committed
Prepare for hotfix release 1.3.5
1 parent c20a6a5 commit a8c0e86

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://keepachangelog.com/en/1.0.0/
1010
https://semver.org/spec/v2.0.0.html
1111

1212

13-
## [1.3.5]
13+
## [1.3.5] - 2022-10-25
1414

1515
### Fixed
1616
- Fix broken array slicing inside `addcyclic` (PR [#559], solves issue
@@ -1020,7 +1020,9 @@ https://github.com/matplotlib/basemap/issues/228
10201020
https://github.com/matplotlib/basemap/issues/179
10211021

10221022
[Unreleased]:
1023-
https://github.com/matplotlib/basemap/compare/v1.3.4...develop
1023+
https://github.com/matplotlib/basemap/compare/v1.3.5...develop
1024+
[1.3.5]:
1025+
https://github.com/matplotlib/basemap/compare/v1.3.4...v1.3.5
10241026
[1.3.4]:
10251027
https://github.com/matplotlib/basemap/compare/v1.3.3...v1.3.4
10261028
[1.3.3]:

packages/basemap/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def run(self):
172172
"name":
173173
"basemap",
174174
"version":
175-
"1.3.4",
175+
"1.3.5",
176176
"license":
177177
"MIT",
178178
"description":

packages/basemap/src/mpl_toolkits/basemap/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
import _geoslib
5454
import functools
5555

56+
57+
__version__ = "1.3.5"
58+
5659
# basemap data files now installed in lib/matplotlib/toolkits/basemap/data
5760
# check to see if environment variable BASEMAPDATA set to a directory,
5861
# and if so look for the data there.
@@ -64,8 +67,6 @@
6467
from mpl_toolkits import basemap_data
6568
basemap_datadir = os.path.abspath(list(basemap_data.__path__)[0])
6669

67-
__version__ = "1.3.4"
68-
6970
# module variable that sets the default value for the 'latlon' kwarg.
7071
# can be set to True by user so plotting functions can take lons,lats
7172
# in degrees by default, instead of x,y (map projection coords in meters).

packages/basemap/src/mpl_toolkits/basemap/proj.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
# as textwrap.dedent.
1111
from matplotlib.cbook import dedent
1212

13-
__version__ = "1.3.4"
13+
14+
__version__ = "1.3.5"
15+
1416
_dg2rad = math.radians(1.)
1517
_rad2dg = math.degrees(1.)
1618

0 commit comments

Comments
 (0)