Skip to content

Commit 44e917d

Browse files
committed
Updated changelog
1 parent f71cb9b commit 44e917d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# PythonQwt Releases
22

3+
## Version 0.9.0
4+
5+
- `QwtPlot`: set the `autoReplot` option at False by default, to avoid time consuming
6+
implicit plot updates.
7+
- Added `QwtPlotItem.setIcon` and `QwtPlotItem.icon` method for setting and getting the
8+
icon associated to the plot item (as of today, this feature is not strictly needed in
9+
PythonQwt: this has been implemented for several use cases in higher level libraries
10+
(see PR #61).
11+
- Removed unused `QwtPlotItem.defaultIcon` method.
12+
- Added various minor optimizations for axes/ticks drawing features.
13+
- Fixed `QwtPlot.canvasMap` when `axisScaleDiv` returns None
14+
315
## Version 0.8.3
416

517
- Fixed simple plot examples (setup.py & plot.py's doc page) following the introduction

qwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
.. _GitHubPage: http://pierreraybaut.github.io/PythonQwt
2929
.. _GitHub: https://github.com/PierreRaybaut/PythonQwt
3030
"""
31-
__version__ = "0.8.3"
31+
__version__ = "0.9.0"
3232
QWT_VERSION_STR = "6.1.5"
3333

3434
import warnings

0 commit comments

Comments
 (0)