Skip to content

Commit 28324a0

Browse files
committed
Updated changelog for v0.1.1
1 parent 83dc8cb commit 28324a0

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.spyderproject
22
qwt-6.1.2
3+
qwt/tests/demo.png
34

45
# Created by https://www.gitignore.io/api/python
56

CHANGELOG

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
= History of changes =
1+
# History of changes
22

3-
== Version 0.1.0 ==
3+
## Version 0.1.1
44

5-
First public release.
5+
Fixed Issue #21 (blocking issue *only* on non-Windows platforms when building
6+
the package): typo in "python-qwt-tests" script name (setup.py)
67

7-
API compatibility issues with Qwt 6.1.2:
8-
* `QwtPlot.MinimizeMemory` option was removed as this option has no sense
9-
in python-qwt (the polyline plotting is not taking more memory than the
10-
array data that is already there).
11-
*
8+
## Version 0.1.0
9+
10+
First alpha public release.

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ See included LICENSE file for more details about licensing terms.
3939

4040
## Overview
4141

42-
The `qwt` package is a pure Python implementation of Qwt C++ library with
43-
the following limitations.
42+
The `qwt` package is a pure Python implementation of `Qwt` C++ library
43+
with the following limitations.
4444

4545
The following `Qwt` classes won't be reimplemented in `qwt` because more
4646
powerful features already exist in `guiqwt`: `QwtPlotZoomer`,
@@ -57,6 +57,11 @@ performance issues). As a consequence, when zooming in a plot curve, the
5757
entire curve is still painted (in other words, when working with large
5858
amount of data, there is no performance gain when zooming in).
5959

60+
Other API compatibility issues with `Qwt`:
61+
- `QwtPlot.MinimizeMemory` option was removed as this option has no sense
62+
in python-qwt (the polyline plotting is not taking more memory than the
63+
array data that is already there).
64+
6065
## Dependencies
6166

6267
### Requirements ###

qwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Copyright (c) 2015 Pierre Raybaut, for the Python translation/optimization
66
# (see LICENSE file for more details)
77

8-
__version__ = '0.1.0'
8+
__version__ = '0.1.1'
99
QWT_VERSION_STR = '6.1.2'
1010

1111
import warnings

0 commit comments

Comments
 (0)