Skip to content

Commit a49fb10

Browse files
committed
Prepare for hotfix 1.3.4
1 parent 49dc39e commit a49fb10

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
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-
## [Unreleased]
13+
## [1.3.4] - 2022-08-10
1414

1515
### Changed
1616
- Upgrade `numpy` upper pin to 1.24.
@@ -1002,7 +1002,9 @@ https://github.com/matplotlib/basemap/issues/228
10021002
https://github.com/matplotlib/basemap/issues/179
10031003

10041004
[Unreleased]:
1005-
https://github.com/matplotlib/basemap/compare/v1.3.3...develop
1005+
https://github.com/matplotlib/basemap/compare/v1.3.4...develop
1006+
[1.3.4]:
1007+
https://github.com/matplotlib/basemap/compare/v1.3.3...v1.3.4
10061008
[1.3.3]:
10071009
https://github.com/matplotlib/basemap/compare/v1.3.2...v1.3.3
10081010
[1.3.2]:

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.3+dev",
175+
"1.3.4",
176176
"license":
177177
"MIT",
178178
"description":

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

+1-1
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.3+dev"
67+
__version__ = "1.3.4"
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

+1-1
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.3+dev"
13+
__version__ = "1.3.4"
1414
_dg2rad = math.radians(1.)
1515
_rad2dg = math.degrees(1.)
1616

0 commit comments

Comments
 (0)