Skip to content

Commit 2feb17c

Browse files
committed
Merge branch 'hotfix-1.3.3' into develop
2 parents f310fce + c7a4323 commit 2feb17c

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,17 @@ https://keepachangelog.com/en/1.0.0/
1010
https://semver.org/spec/v2.0.0.html
1111

1212

13-
## [Unreleased]
13+
## [1.3.3] - 2022-05-11
14+
15+
### Changed
16+
- Reformat `basemap.cm` using `flake8` and `black`.
17+
18+
### Fixed
19+
- Fix issue in `drawcoastlines` with shape of vertices array
20+
(PR [#538] by @guziy, fixes issue [#512]).
21+
- Fix setup to identify GEOS dylib on MacOS correctly (PR [#541],
22+
fixes issue [#539], thanks to @ronaldbradford and @CaffreyR for
23+
testing).
1424

1525
### Removed
1626
- Remove dependency on `six` (PR [#537], fixes issue [#536]).
@@ -892,6 +902,12 @@ https://semver.org/spec/v2.0.0.html
892902
- Fix glitches in drawing of parallels and meridians.
893903

894904

905+
[#541]:
906+
https://github.com/matplotlib/basemap/pull/541
907+
[#539]:
908+
https://github.com/matplotlib/basemap/issues/539
909+
[#538]:
910+
https://github.com/matplotlib/basemap/pull/538
895911
[#537]:
896912
https://github.com/matplotlib/basemap/pull/537
897913
[#536]:
@@ -918,6 +934,8 @@ https://github.com/matplotlib/basemap/issues/521
918934
https://github.com/matplotlib/basemap/issues/518
919935
[#513]:
920936
https://github.com/matplotlib/basemap/issues/513
937+
[#512]:
938+
https://github.com/matplotlib/basemap/issues/512
921939
[#510]:
922940
https://github.com/matplotlib/basemap/issues/510
923941
[#505]:
@@ -956,7 +974,9 @@ https://github.com/matplotlib/basemap/issues/228
956974
https://github.com/matplotlib/basemap/issues/179
957975

958976
[Unreleased]:
959-
https://github.com/matplotlib/basemap/compare/v1.3.2...develop
977+
https://github.com/matplotlib/basemap/compare/v1.3.3...develop
978+
[1.3.3]:
979+
https://github.com/matplotlib/basemap/compare/v1.3.2...v1.3.3
960980
[1.3.2]:
961981
https://github.com/matplotlib/basemap/compare/v1.3.1...v1.3.2
962982
[1.3.1]:

packages/basemap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ https://spdx.org/licenses/LGPL-2.1-only.html
4545
https://spdx.org/licenses/MIT.html
4646

4747
[`LICENSE`]:
48-
https://github.com/matplotlib/basemap/blob/v1.3.2/packages/basemap/LICENSE
48+
https://github.com/matplotlib/basemap/blob/v1.3.3/packages/basemap/LICENSE
4949
[`LICENSE.geos`]:
50-
https://github.com/matplotlib/basemap/blob/v1.3.2/packages/basemap/LICENSE.geos
50+
https://github.com/matplotlib/basemap/blob/v1.3.3/packages/basemap/LICENSE.geos

packages/basemap/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def run(self):
172172
"name":
173173
"basemap",
174174
"version":
175-
"1.3.2+dev",
175+
"1.3.3",
176176
"license":
177177
"MIT",
178178
"description":

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
from mpl_toolkits import basemap_data
6565
basemap_datadir = os.path.abspath(list(basemap_data.__path__)[0])
6666

67-
__version__ = "1.3.2+dev"
67+
__version__ = "1.3.3"
6868

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# as textwrap.dedent.
1111
from matplotlib.cbook import dedent
1212

13-
__version__ = "1.3.2+dev"
13+
__version__ = "1.3.3"
1414
_dg2rad = math.radians(1.)
1515
_rad2dg = math.degrees(1.)
1616

0 commit comments

Comments
 (0)