Skip to content

Commit 7127e9c

Browse files
author
Matthias Feurer
authored
Update changelog and version number for new release (#1230)
1 parent 3c00d7b commit 7127e9c

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

doc/progress.rst

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,33 @@ Changelog
99
0.13.1
1010
~~~~~~
1111

12-
* Add new contributions here.
13-
* ADD#1028: Add functions to delete runs, flows, datasets, and tasks (e.g., ``openml.datasets.delete_dataset``).
14-
* ADD#1144: Add locally computed results to the ``OpenMLRun`` object's representation if the run was created locally and not downloaded from the server.
12+
* ADD #1028: Add functions to delete runs, flows, datasets, and tasks (e.g., ``openml.datasets.delete_dataset``).
13+
* ADD #1144: Add locally computed results to the ``OpenMLRun`` object's representation if the run was created locally and not downloaded from the server.
14+
* ADD #1180: Improve the error message when the checksum of a downloaded dataset does not match the checksum provided by the API.
15+
* ADD #1201: Make ``OpenMLTraceIteration`` a dataclass.
16+
* DOC #1069: Add argument documentation for the ``OpenMLRun`` class.
1517
* FIX #1197 #559 #1131: Fix the order of ground truth and predictions in the ``OpenMLRun`` object and in ``format_prediction``.
1618
* FIX #1198: Support numpy 1.24 and higher.
19+
* FIX #1216: Allow unknown task types on the server. This is only relevant when new task types are added to the test server.
20+
* MAINT #1155: Add dependabot github action to automatically update other github actions.
21+
* MAINT #1199: Obtain pre-commit's flake8 from github.com instead of gitlab.com.
22+
* MAINT #1215: Support latest numpy version.
23+
* MAINT #1218: Test Python3.6 on Ubuntu 20.04 instead of the latest Ubuntu (which is 22.04).
24+
* MAINT #1221 #1212 #1206 #1211: Update github actions to the latest versions.
1725

1826
0.13.0
1927
~~~~~~
2028

21-
* FIX#1030: ``pre-commit`` hooks now no longer should issue a warning.
22-
* FIX#1058, #1100: Avoid ``NoneType`` error when printing task without ``class_labels`` attribute.
23-
* FIX#1110: Make arguments to ``create_study`` and ``create_suite`` that are defined as optional by the OpenML XSD actually optional.
24-
* FIX#1147: ``openml.flow.flow_exists`` no longer requires an API key.
25-
* FIX#1184: Automatically resolve proxies when downloading from minio. Turn this off by setting environment variable ``no_proxy="*"``.
26-
* MAIN#1088: Do CI for Windows on Github Actions instead of Appveyor.
27-
* MAINT#1104: Fix outdated docstring for ``list_task``.
28-
* MAIN#1146: Update the pre-commit dependencies.
29-
* ADD#1103: Add a ``predictions`` property to OpenMLRun for easy accessibility of prediction data.
30-
* ADD#1188: EXPERIMENTAL. Allow downloading all files from a minio bucket with ``download_all_files=True`` for ``get_dataset``.
29+
* FIX #1030: ``pre-commit`` hooks now no longer should issue a warning.
30+
* FIX #1058, #1100: Avoid ``NoneType`` error when printing task without ``class_labels`` attribute.
31+
* FIX #1110: Make arguments to ``create_study`` and ``create_suite`` that are defined as optional by the OpenML XSD actually optional.
32+
* FIX #1147: ``openml.flow.flow_exists`` no longer requires an API key.
33+
* FIX #1184: Automatically resolve proxies when downloading from minio. Turn this off by setting environment variable ``no_proxy="*"``.
34+
* MAINT #1088: Do CI for Windows on Github Actions instead of Appveyor.
35+
* MAINT #1104: Fix outdated docstring for ``list_task``.
36+
* MAINT #1146: Update the pre-commit dependencies.
37+
* ADD #1103: Add a ``predictions`` property to OpenMLRun for easy accessibility of prediction data.
38+
* ADD #1188: EXPERIMENTAL. Allow downloading all files from a minio bucket with ``download_all_files=True`` for ``get_dataset``.
3139

3240

3341
0.12.2

openml/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# License: BSD 3-Clause
44

55
# The following line *must* be the last in the module, exactly as formatted:
6-
__version__ = "0.13.1.dev"
6+
__version__ = "0.13.1"

0 commit comments

Comments
 (0)