From 3c0aaabb1a3d6eb7086d0d27ddcd4c88836d3910 Mon Sep 17 00:00:00 2001 From: John Haddon Date: Thu, 25 Jul 2013 12:37:43 -0700 Subject: [PATCH] Bumped version number and updated changes file. --- Changes | 13 +++++++++++++ SConstruct | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 1bcf02c848a..e7323dfc4d0 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,16 @@ +0.72.0 +====== + +- Added workaround for weird focus-stealing behaviour in Maya. +- Added application variable to the scope available to the screen grab command. +- Added support for empty and relative paths in Gaffer.Path. ( #432, #324 ) + + - Added root parameter to all path constructors. This is used to define the root when the path parameter is passed a list of items. Because python doesn't allow overloaded functions this is slightly awkward - see documentation of Path.__init__ for discussion of how this would break down into overloaded constructors when we move the implementation to C++. + - Added Path.root() and Path.isEmpty() methods. + - Added Path.setFromPath() method, which copies the elements and the root from another path. This should be used in place of code which formerly did path[:] = otherPath[:]. + + Note that the new root parameter changes the parameter order for all Path (and derived class) constructors - if you were formerly passing a filter as a non-keyword argument you should now pass it as a keyword argument to avoid problems. Additionally, if you implemented a custom Path subclass, you need to add the root parameter to your constructor and update your copy() and children() implementations. The DictPath changes provide a minimal example of what needs changing. + 0.71.0 ====== diff --git a/SConstruct b/SConstruct index 4b8f14a8c5f..a4d615953c5 100644 --- a/SConstruct +++ b/SConstruct @@ -485,7 +485,7 @@ env = Environment( options = options, GAFFER_MAJOR_VERSION = "0", - GAFFER_MINOR_VERSION = "71", + GAFFER_MINOR_VERSION = "72", GAFFER_PATCH_VERSION = "0", )