Skip to content

Commit fb2ceb8

Browse files
authored
Prepare new release 0.14.0 (#1246)
1 parent a8effd8 commit fb2ceb8

File tree

2 files changed

+47
-3
lines changed

2 files changed

+47
-3
lines changed

autosklearn/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.14.0dev"
4+
__version__ = "0.14.0"

doc/releases.rst

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,56 @@
33
..
44
The following command allows to retrieve all commiters since a specified
55
commit. From https://stackoverflow.com/questions/6482436/list-of-authors-in-git-since-a-given-commit
6-
git log 275d0d6b20d16822252d8b50bf71b1c787187f09.. --format="%aN <%aE>" --reverse | perl -e 'my %dedupe; while (<STDIN>) { print unless $dedupe{$_}++}'
6+
git log 3d53cd9b5011258c4fdcce9d02e252d0248e5f1d.. --format="%aN <%aE>" --reverse | perl -e 'my %dedupe; while (<STDIN>) { print unless $dedupe{$_}++}'
77
88
========
99
Releases
1010
========
1111

12+
Version 0.14.0
13+
==============
14+
15+
* ADD #900: Make data preprocessing more configurable, for example allow to completely disable it.
16+
* ADD #1128: Adds new functionality to retrieve data for an accuracy over time plot from
17+
Auto-sklearn without additional code.
18+
* FIX #1149: Stops Auto-sklearn from printing weird warnings (`Exception ignored in [...]`) at
19+
shutdown.
20+
* FIX #1169: Fixes a bug which made cross-validation and multi-output regression incompatible.
21+
* FIX #1170: Make all preprocessing techniques deterministic.
22+
* FIX #1190: Fixes a bug which could make predictive probabilities contain too few classes in
23+
case one class was only present a single time.
24+
* FIX #1209: Pass random states to pipeline objects.
25+
* FIX #1204: Add support for sparse data in Auto-sklearn 2.0.
26+
* FIX #1210: Add support for sparse `y` labels.
27+
* FIX #1245: Fixes a bug which could result in Auto-sklearn crashing in case a class was present
28+
only once.
29+
* DOC #532,#1242: Simplify installation instructions.
30+
* DOC #1144: Document installation via `conda`
31+
* DOC #1195,#1201,#1214: Fix a few typos and links. Make some http links https links.
32+
* DOC #1200: Fixes variable name in an example.
33+
* DOC #1229: Improve code formatting in the documentation.
34+
* DOC #1235: Improve docker startup command so it also work on Windows.
35+
* MAINT #1198: Use latest Ubuntu LTS (20:04) for github actions.
36+
* MAINT #1231: The command `make linkcheck` no longer builds the documentation, speeding up
37+
link-checking.
38+
* MAINT #1233: Enable regression testing with 3 classification and 3 regression datasets on
39+
github actions.
40+
* MAINT #1239: Increase the timeout for github actions to 60 minutes.
41+
42+
Contributors v0.14.0
43+
********************
44+
45+
* Pieter Gijsbers
46+
* Taneli Mielikäinen
47+
* Rohit Agarwal
48+
* hnishi
49+
* Francisco Rivera Valverde
50+
* Eddie Bergman <[email protected]>
51+
* Satyam Jha
52+
* Joel Jose
53+
* Oli
54+
* Matthias Feurer
55+
1256
Version 0.13.0
1357
==============
1458

@@ -29,7 +73,7 @@ Version 0.13.0
2973
* DOC #1109: Add an FAQ.
3074
* DOC #1126: Add new examples on how to use scikit-learn's inspect module.
3175
* DOC #1136: Add a new example on how to perform multi-output regression.
32-
* DOC #1152: Enable link checking when buiding the documentation.
76+
* DOC #1152: Enable link checking when building the documentation.
3377
* DOC #1158: New example on how to configure the logger for Auto-sklearn.
3478
* DOC #1165: Improve the readme page.
3579

0 commit comments

Comments
 (0)