Skip to content

Commit

Permalink
Prepare for hotfix release 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
molinav committed Oct 24, 2022
1 parent c20a6a5 commit a8c0e86
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://keepachangelog.com/en/1.0.0/
https://semver.org/spec/v2.0.0.html


## [1.3.5]
## [1.3.5] - 2022-10-25

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

[Unreleased]:
https://github.com/matplotlib/basemap/compare/v1.3.4...develop
https://github.com/matplotlib/basemap/compare/v1.3.5...develop
[1.3.5]:
https://github.com/matplotlib/basemap/compare/v1.3.4...v1.3.5
[1.3.4]:
https://github.com/matplotlib/basemap/compare/v1.3.3...v1.3.4
[1.3.3]:
Expand Down
2 changes: 1 addition & 1 deletion packages/basemap/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def run(self):
"name":
"basemap",
"version":
"1.3.4",
"1.3.5",
"license":
"MIT",
"description":
Expand Down
5 changes: 3 additions & 2 deletions packages/basemap/src/mpl_toolkits/basemap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
import _geoslib
import functools


__version__ = "1.3.5"

# basemap data files now installed in lib/matplotlib/toolkits/basemap/data
# check to see if environment variable BASEMAPDATA set to a directory,
# and if so look for the data there.
Expand All @@ -64,8 +67,6 @@
from mpl_toolkits import basemap_data
basemap_datadir = os.path.abspath(list(basemap_data.__path__)[0])

__version__ = "1.3.4"

# module variable that sets the default value for the 'latlon' kwarg.
# can be set to True by user so plotting functions can take lons,lats
# in degrees by default, instead of x,y (map projection coords in meters).
Expand Down
4 changes: 3 additions & 1 deletion packages/basemap/src/mpl_toolkits/basemap/proj.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
# as textwrap.dedent.
from matplotlib.cbook import dedent

__version__ = "1.3.4"

__version__ = "1.3.5"

_dg2rad = math.radians(1.)
_rad2dg = math.degrees(1.)

Expand Down

0 comments on commit a8c0e86

Please sign in to comment.