From 6ba68c7c1607b6bf8f915bae5eed70e8cc7e9fdf Mon Sep 17 00:00:00 2001 From: astrofrog Date: Mon, 20 Mar 2023 22:23:17 +0000 Subject: [PATCH] Update CHANGELOG --- CHANGES.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index b841b1468..cdc05b198 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,32 @@ # Full changelog +## 1.8.0 - 2023-03-20 + + +### What's Changed + +#### New Features + +- Relax longitude range in fullsphere projections by @Carifio24 in https://github.com/glue-viz/glue/pull/2348 + +#### Bug Fixes + +- Update polar log transform test values to correct matplotlib 3.7 representation by @Carifio24 in https://github.com/glue-viz/glue/pull/2366 +- Fix broken link editor under Qt5 by @jfoster17 in https://github.com/glue-viz/glue/pull/2375 + +#### Documentation + +- DOC: Fix equivalent_units in examples by @pllim in https://github.com/glue-viz/glue/pull/2369 + +#### Other Changes + +- Update link for slack invite by @astrofrog in https://github.com/glue-viz/glue/pull/2362 +- Update stable version of standalone app to 2023.02.0 by @astrofrog in https://github.com/glue-viz/glue/pull/2363 +- MNT: drop runtime dependency on pkg_resources (setuptools) by @neutrinoceros in https://github.com/glue-viz/glue/pull/2365 +- BUG: handle deprecation warning from numpy 1.25 (np.product is deprecated in favour of np.prod) by @neutrinoceros in https://github.com/glue-viz/glue/pull/2371 + +**Full Changelog**: https://github.com/glue-viz/glue/compare/v1.7.0...1.8.0 + ## v1.7.0 - 2023-02-02 @@ -568,34 +595,44 @@ - - `glue.core.application_base.ViewerBase` has been removed in favor of - - +- - - `glue.viewers.common.viewer.BaseViewer` and - - +- - - `glue.viewers.common.viewer.Viewer`. - - +- - - - - +- - - `glue.viewers.common.viewer.Viewer` is now where the base logic is defined - - +- - - for using state classes in viewers (instead of - - +- - - `glue.viewers.common.qt.DataViewerWithState`). - - +- - - - - +- - - `glue.viewers.common.qt.DataViewerWithState` is now deprecated. - - +- - - - - - +- - Make it so that the modest image only resamples the data when the - mouse is no longer pressed - this avoids too many refreshes when - panning/zooming. https://github.com/glue-viz/glue/pull/1866