Skip to content

Commit b5a71ee

Browse files
committed
Prepare for release 1.4.0
1 parent 151de35 commit b5a71ee

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-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-
## [Unreleased]
13+
## [1.4.0] - 2024-01-09
1414

1515
### Added
1616
- Support for Python 3.12 (solves issue [#590]).
@@ -1230,7 +1230,9 @@ https://github.com/matplotlib/basemap/issues/228
12301230
https://github.com/matplotlib/basemap/issues/179
12311231

12321232
[Unreleased]:
1233-
https://github.com/matplotlib/basemap/compare/v1.3.9...develop
1233+
https://github.com/matplotlib/basemap/compare/v1.4.0...develop
1234+
[1.4.0]:
1235+
https://github.com/matplotlib/basemap/compare/v1.3.9...v1.4.0
12341236
[1.3.9]:
12351237
https://github.com/matplotlib/basemap/compare/v1.3.8...v1.3.9
12361238
[1.3.8]:

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

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.4.0-dev"
5+
__version__ = "1.4.0"
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.4.0-dev"
51+
__version__ = "1.4.0"
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)