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: 12 additions & 0 deletions docs/iris/src/whatsnew/2.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,18 @@ Incompatible Changes
* If the `packing` argument to `iris.save` is a dictionary, an error is raised
if it contains any keys other than 'dtype', 'scale_factor' and 'add_offset'.

* The deprecated :mod:`iris.fileformats.grib` was removed. All Iris GRIB
functionality is now delivered through :mod:`iris-grib`.

* In Iris v1 it was possible to configure Iris to log at import time through
:attr:`iris.config.LOGGING`. This capability has been removed in iris v2.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this attribute actually still exist or will we end up with a broken link in the docs?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you also capitalise the last "iris" to be consistent with the other examples of the word in this point please.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FWIW the what's new can be read at https://scitools-docs.github.io/iris/v2.0.x/whatsnew/2.0.html (once the cache is updated, it will also be available at http://scitools.org.uk/iris/docs/v2.0/whatsnew/2.0.html)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK I've checked the built whatsnew and there isn't a link to LOGGING. It doesn't really impact the page though because the text falls back to preformatted.


* When coordinates have no well defined plot axis, iris.plot and iris.quickplot
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Links to modules?

Also, 'axis' --> 'axes', probably. Update: In fact, I think that either works here. Up to you whether you change it or not.

routines now use the order of the cube's dimensions to determine the
coordinates to plot as the x and y axis of a plot.

* The cf_units dependency version has been updated to v1.2.0, which prints shorter
unit strings.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I included a little example with this whatsnew item - did you elect to leave it out?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good spot. No it wasn't intentional.



Deprecation removals
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

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.0.0rc1'
__version__ = '2.1.0dev0'

# Restrict the names imported when using "from iris import *"
__all__ = ['load', 'load_cube', 'load_cubes', 'load_raw',
Expand Down