Skip to content

Commit 32065ce

Browse files
committed
Prepare for hotfix 1.4.1
1 parent 44b5e78 commit 32065ce

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
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.4.1] - 2024-02-15
1414

1515
### Changed
1616
- Update workflow actions to use NodeJS 20:
@@ -1252,7 +1252,9 @@ https://github.com/matplotlib/basemap/issues/228
12521252
https://github.com/matplotlib/basemap/issues/179
12531253

12541254
[Unreleased]:
1255-
https://github.com/matplotlib/basemap/compare/v1.4.0...develop
1255+
https://github.com/matplotlib/basemap/compare/v1.4.1...develop
1256+
[1.4.1]:
1257+
https://github.com/matplotlib/basemap/compare/v1.4.0...v1.4.1
12561258
[1.4.0]:
12571259
https://github.com/matplotlib/basemap/compare/v1.3.9...v1.4.0
12581260
[1.3.9]:

packages/basemap/README.md

+2-2
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.4.0/packages/basemap/LICENSE
48+
https://github.com/matplotlib/basemap/blob/v1.4.1/packages/basemap/LICENSE
4949
[`LICENSE.geos`]:
50-
https://github.com/matplotlib/basemap/blob/v1.4.0/packages/basemap/LICENSE.geos
50+
https://github.com/matplotlib/basemap/blob/v1.4.1/packages/basemap/LICENSE.geos

packages/basemap/requirements-doc.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ sphinx >= 5.3, < 7.2; python_version >= "3.8"
22
furo >= 2022.4.7, < 2023.9.11; python_version >= "3.8"
33

44
scipy >= 1.2, < 1.12; python_version >= "3.5"
5-
netCDF4 >= 1.5.6, < 1.7.0; python_version >= "3.6"
65
cftime >= 1.4.0, < 1.7.0; python_version >= "3.6"
6+
netCDF4 >= 1.5.6, < 1.7.0; python_version >= "3.6"

packages/basemap/src/_geoslib.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sys
22
import numpy
33
cimport numpy as cnp
44

5-
__version__ = "1.5.0-dev"
5+
__version__ = "1.4.1"
66

77

88
# Need some Python C-API functions for strings.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
from . proj import Proj
4949

5050

51-
__version__ = "1.5.0-dev"
51+
__version__ = "1.4.1"
5252

5353
# basemap data files now installed in lib/matplotlib/toolkits/basemap/data
5454
# check to see if environment variable BASEMAPDATA set to a directory,

0 commit comments

Comments
 (0)