diff --git a/CHANGES.txt b/CHANGES.txt index 76991fe2e..fb6abb18e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,18 @@ Chaco CHANGELOG =============== +Release 4.7.2 +------------- + +Fixes + +* FIX: Ensure contiguous inputs to points_in_polygon (#409 & #410) +* FIX: Handle multiple plots in LegendHighlighter (#403) +* FIX: alias six.moves as sm (#401) +* FIX: Respect visibility in the LegendHighlighter (#402) +* BUG: Fix use of itertools.chain() (#394) + + Release 4.7.1 ------------- diff --git a/setup.py b/setup.py index 66a1bf24a..4047e2e47 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ MINOR = 7 MICRO = 2 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)