From 0f847d1631effe794712dec671a0ddfb996160a8 Mon Sep 17 00:00:00 2001 From: Joris Vankerschaver Date: Mon, 8 Jul 2019 22:02:53 +0100 Subject: [PATCH 1/3] DOC: Update CHANGES.txt for version 4.7.2/4.8.0 --- CHANGES.txt | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 452fd911a..74914d418 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,12 +2,68 @@ Chaco CHANGELOG =============== +Release 4.8.0 +------------- + +New features/Improvements + +* Refactor DataPrinter to add _build_text_from_event method (PR #450) +* Simplify controlling text of ImageInspectorOverlay (PR #431) +* 2D segment and text scatter plot types (PR #407) +* Set up Windows testing under AppVeyor (PR #445) +* Add option for aligning label in index direction in TextPlot1D (PR #430) + +Fixes + +* Fix missing imports of SegmentPlot and TextPlot (PR #470) +* Fix circular imports in toolbar_plot, transform_color_mapper (PR #469) +* Fix deprecated logger.warn uses (PR #458) +* Fix DataBox resizing bug (PR #456) +* Do not render quiver if there is no point (PR #424) +* Use single comma-separated trait names in on_trait_change, not multiple + arguments (PR #397) + +Documentation/examples + +* Add documentation for some tools (PR #451) +* Remove erroneous `label_rotation` comment (PR #447) +* Add scatter inspector example (PR #434) +* Fix float indices in Spectrum demo (PR #427) +* Fix world_map demo (PR #423) +* Fix up create_plot_snapshots script (PR #421) +* Docstring for ArrayPlotData.{set_data,update_data} (PR #399) + +Maintenance + +* Fix test that fails with Numpy 1.16 (PR #471) +* Update Travis CI configuration to be compatible with Ubuntu Xenial (PR #452) +* Update unittest imports (PR #446) +* Address DeprecationWarnings (PR #441) +* Use unittest-style tests (PR #440) +* Run testsuite on macOS and Python 3.6 (PR #442) +* Use standard Sphinx extensions for trait documenting (PR #436) +* Update Cython generated code to support Python 3.7 (PR #433) +* Skip DataFramePlotData tests if Pandas not installed (PR #422) + + +Release 4.7.2 +------------- + +Fixes + +* Ensure contiguous inputs to points_in_polygon (#409 & #410) +* Handle multiple plots in LegendHighlighter (#403) +* Alias six.moves as sm (#401) +* Respect visibility in the LegendHighlighter (#402) +* Fix use of itertools.chain() (#394) + + Release 4.7.1 ------------- New features/Improvements -* Add a inspector_event attribute to ScatterInspector to get +* Add a inspector_event attribute to ScatterInspector to get notifications when both (un)hovering or (de)selecting (PR#395). Fixes From c029806856a63a0bf3c018e7fd79301f17bc6886 Mon Sep 17 00:00:00 2001 From: Joris Vankerschaver Date: Mon, 8 Jul 2019 22:05:57 +0100 Subject: [PATCH 2/3] REL: 4.8.0 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index aa36b406a..f9f6e51b4 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ from setuptools import setup, Extension, find_packages MAJOR = 4 -MINOR = 7 -MICRO = 1 +MINOR = 8 +MICRO = 0 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) From dc49d222e9011dd1129acd593aa6766f19032df0 Mon Sep 17 00:00:00 2001 From: Joris Vankerschaver Date: Mon, 8 Jul 2019 22:07:55 +0100 Subject: [PATCH 3/3] MAINT: Post-release version bump --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f9f6e51b4..d631652ec 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,9 @@ MAJOR = 4 MINOR = 8 -MICRO = 0 +MICRO = 1 -IS_RELEASED = True +IS_RELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)