Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/iris/src/whatsnew/2.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ What's New in Iris 2.4.0
************************

:Release: 2.4.0
:Date: 2020-01-15
:Date: 2020-02-20

This document explains the new/changed features of Iris in version 2.4.0
(:doc:`View all changes <index>`.)
Expand Down Expand Up @@ -47,3 +47,13 @@ Iris 2.4.0 Features
Iris 2.4.0 Dependency Updates
=============================
* Iris is now able to use the latest version of matplotlib.


Bugs Fixed
==========
* Fixed a problem which was causing file loads to fetch *all* field data
whenever UM files (PP or Fieldsfiles) were loaded.
With large sourcefiles, initial file loads are slow, with large memory usage
before any cube data is even fetched. Large enough files will cause a crash.
The problem occurs only with Dask versions >= 2.0.

This file was deleted.

2 changes: 1 addition & 1 deletion lib/iris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def callback(cube, field, filename):


# Iris revision.
__version__ = '2.4.0rc0'
__version__ = '2.4.0'

# Restrict the names imported when using "from iris import *"
__all__ = [
Expand Down