Skip to content

Commit b71325c

Browse files
authored
MAINT prepare new release (#600)
* MAINT prepare new release * MAINT update changelog * MAINT update release notes * Fix dataframe spelling
1 parent 2375940 commit b71325c

File tree

2 files changed

+45
-5
lines changed

2 files changed

+45
-5
lines changed

doc/progress.rst

Lines changed: 44 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,47 @@ Changelog
1111

1212
0.8.0
1313
~~~~~
14-
* Added serialize run / deserialize run function (for saving runs on disk before uploading)
15-
* FIX: fixed bug related to listing functions (returns correct listing size)
16-
* made openml.utils.list_all a hidden function (should be accessed only by the respective listing functions)
17-
* Improve error handling for issue `#479 <https://github.com/openml/openml-python/pull/479>`_:
14+
15+
* ADD #440: Improved dataset upload.
16+
* ADD #545, #583: Allow uploading a dataset from a pandas DataFrame.
17+
* ADD #528: New functions to update the status of a dataset.
18+
* ADD #523: Support for scikit-learn 0.20's new ColumnTransformer.
19+
* ADD #459: Enhanced support to store runs on disk prior to uploading them to
20+
OpenML.
21+
* ADD #564: New helpers to access the structure of a flow (and find its
22+
subflows).
23+
* FIX #538: Support loading clustering tasks.
24+
* FIX #464: Fixes a bug related to listing functions (returns correct listing
25+
size).
26+
* FIX #580: Listing function now works properly when there are less results
27+
than requested.
28+
* FIX #571: Fixes an issue where tasks could not be downloaded in parallel.
29+
* FIX #536: Flows can now be printed when the flow name is None.
30+
* FIX #504: Better support for hierarchical hyperparameters when uploading
31+
scikit-learn's grid and random search.
32+
* FIX #569: Less strict checking of flow dependencies when loading flows.
33+
* FIX #431: Pickle of task splits are no longer cached.
34+
* DOC #540: More examples for dataset uploading.
35+
* DOC #554: Remove the doubled progress entry from the docs.
36+
* MAINT #613: Utilize the latest updates in OpenML evaluation listings.
37+
* MAINT #482: Cleaner interface for handling search traces.
38+
* MAINT #557: Continuous integration works for scikit-learn 0.18-0.20.
39+
* MAINT #542: Continuous integration now runs python3.7 as well.
40+
* MAINT #535: Continuous integration now enforces PEP8 compliance for new code.
41+
* MAINT #527: Replace deprecated nose by pytest.
42+
* MAINT #510: Documentation is now built by travis-ci instead of circle-ci.
43+
* MAINT: Completely re-designed documentation built on sphinx gallery.
44+
* MAINT #462: Appveyor CI support.
45+
* MAINT #477: Improve error handling for issue
46+
`#479 <https://github.com/openml/openml-python/pull/479>`_:
1847
the OpenML connector fails earlier and with a better error message when
1948
failing to create a flow from the OpenML description.
49+
* MAINT #561: Improve documentation on running specific unit tests.
50+
51+
0.4.-0.7
52+
~~~~~~~~
53+
54+
There is no changelog for these versions.
2055

2156
0.3.0
2257
~~~~~
@@ -25,6 +60,11 @@ Changelog
2560
* 2nd example notebook PyOpenML.ipynb (Joaquin Vanschoren)
2661
* Pagination support for list datasets and list tasks
2762

63+
Prior
64+
~~~~~
65+
66+
There is no changelog for prior versions.
67+
2868
API calls
2969
=========
3070

openml/__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.8.0dev"
4+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)