-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ Release Notes | |
|
||
Looking for :ref:`previous-release-notes`? | ||
|
||
.. include:: v3.4.x.rst | ||
.. include:: v3.5.x.rst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ Release Notes for Older Versions | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
v3.4.x | ||
v3.3.x | ||
v3.2.x | ||
v3.1.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
What's new in v3.5.0 | ||
-------------------- | ||
|
||
(released 01/03/2024) | ||
|
||
|
||
New Features | ||
^^^^^^^^^^^^ | ||
|
||
- The backend for the Ergast API is now changed to its successor Jolpica-F1 | ||
(see https://github.com/jolpica/jolpica-f1 ) to ensure continued support for | ||
the 2025 season and later seasons. | ||
|
||
- Added team colors for the 2025 season. (by @Casper-Guo) (#690) | ||
|
||
|
||
Bug Fixes | ||
^^^^^^^^^ | ||
|
||
- Incorrect and inconsistent data types in various places have been fixed. The | ||
dtypes of all DataFrames after data loading now always match the dtypes that | ||
are defined in the documentation. Some dtypes may have changed as a result | ||
of this fix. | ||
|
||
- Fixed lap time alignment failures in some edge cases. | ||
|
||
|
||
Backwards Incompatible Changes | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
- ``Laps.pick_fastest()`` will now return ``None`` if no fastest lap exists, as | ||
announced previously. | ||
Previously, an empty ``Lap`` object was returned. | ||
|
||
|
||
Maintenance | ||
^^^^^^^^^^^ | ||
|
||
- Addressed upcoming changes in pandas and fixed a related deprecation warning | ||
caused by implicit type coercion. (by @Casper-Guo) (#676, #682) | ||
|
||
- Temporarily pinned ``websockets`` to version 14 or older to prevent issues | ||
with live timing recording. |