Skip to content

Commit d23e0d1

Browse files
committed
Release 3.30.0
1 parent c818d8d commit d23e0d1

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

CHANGELOG.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,33 @@ Change Log
44
[next] - TBA
55
------------
66

7+
[3.30.0] - 2021-09-22
8+
--------------------
9+
##### Enhancements
10+
* OWPythonScript: Better text editor ([#5208](../../pull/5208))
11+
* PCA: Output variance of components ([#5513](../../pull/5513))
12+
* Curve Fit: New widget ([#5481](../../pull/5481))
13+
* Hierarchical Clustering: Annotate variables with clusters ([#5514](../../pull/5514))
14+
* Create nodes on canvas drag/drop ([#5031](../../pull/5031))
15+
16+
##### Bugfixes
17+
* setup.py: do not overwrite conda's PyQt5 ([#5593](../../pull/5593))
18+
* Use explicit ordered multiple inputs ([#4860](../../pull/4860))
19+
* Prevent crash when saving in unsupported format ([#5560](../../pull/5560))
20+
* owrocanalysis: Fix test for non empty points array ([#5571](../../pull/5571))
21+
* pandas_compat: fix conversion of datetime series ([#5547](../../pull/5547))
22+
* Fix deepcopy and pickle for classes derived from `np.ndarray` ([#5536](../../pull/5536))
23+
* owheatmap: Fix assertion error when restoring selection ([#5517](../../pull/5517))
24+
* Pivot: Handle empty data, metas only ([#5527](../../pull/5527))
25+
* table_to_frame - handle numeric columns with dtype=object ([#5474](../../pull/5474))
26+
* listfilter: Bypass QListView.dropEvent ([#5477](../../pull/5477))
27+
28+
729
[3.29.3] - 2021-06-09
830
--------------------
931
##### Bugfixes
1032
* Create Class: fix incorrect value assignment
1133

12-
1334
[3.29.2] - 2021-06-08
1435
--------------------
1536
##### Bugfixes
@@ -1568,7 +1589,8 @@ Change Log
15681589
* Initial version based on Python 1.5.2 and Qt 2.3
15691590

15701591

1571-
[next]: https://github.com/biolab/orange3/compare/3.29.3...HEAD
1592+
[next]: https://github.com/biolab/orange3/compare/3.30.0...HEAD
1593+
[next]: https://github.com/biolab/orange3/compare/3.29.3...3.30.0
15721594
[3.29.3]: https://github.com/biolab/orange3/compare/3.29.2...3.29.3
15731595
[3.29.2]: https://github.com/biolab/orange3/compare/3.29.1...3.29.2
15741596
[3.29.1]: https://github.com/biolab/orange3/compare/3.29.0...3.29.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
NAME = 'Orange3'
4646

4747
VERSION = '3.30.0'
48-
ISRELEASED = False
48+
ISRELEASED = True
4949
# full version identifier including a git revision identifier for development
5050
# build/releases (this is filled/updated in `write_version_py`)
5151
FULLVERSION = VERSION

0 commit comments

Comments
 (0)