Skip to content

Commit 89b77ab

Browse files
prepare release of datafusion-python 41.0.0 (#866)
* bump datafusion-python version * generate changelog I used the following command, then pasted the output into CHANGELOG.md. ```console ./dev/release/generate-changelog.py 40.1.0-rc1 HEAD 41.0.0 ```
1 parent fd8224e commit 89b77ab

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,51 @@
1919

2020
# DataFusion Python Changelog
2121

22+
## [41.0.0](https://github.com/apache/datafusion-python/tree/41.0.0) (2024-09-09)
23+
24+
This release consists of 19 commits from 6 contributors. See credits at the end of this changelog for more information.
25+
26+
**Implemented enhancements:**
27+
28+
- feat: enable list of paths for read_csv [#824](https://github.com/apache/datafusion-python/pull/824) (mesejo)
29+
- feat: better exception and message for table not found [#851](https://github.com/apache/datafusion-python/pull/851) (mesejo)
30+
- feat: make cast accept built-in Python types [#858](https://github.com/apache/datafusion-python/pull/858) (mesejo)
31+
32+
**Other:**
33+
34+
- chore: Prepare for 40.0.0 release [#801](https://github.com/apache/datafusion-python/pull/801) (andygrove)
35+
- Add typing-extensions dependency to pyproject [#805](https://github.com/apache/datafusion-python/pull/805) (timsaucer)
36+
- Upgrade deps to datafusion 41 [#802](https://github.com/apache/datafusion-python/pull/802) (Michael-J-Ward)
37+
- Fix SessionContext init with only SessionConfig [#827](https://github.com/apache/datafusion-python/pull/827) (jcrist)
38+
- build(deps): upgrade actions/{upload,download}-artifact@v3 to v4 [#829](https://github.com/apache/datafusion-python/pull/829) (Michael-J-Ward)
39+
- Run ruff format in CI [#837](https://github.com/apache/datafusion-python/pull/837) (timsaucer)
40+
- Add PyCapsule support for Arrow import and export [#825](https://github.com/apache/datafusion-python/pull/825) (timsaucer)
41+
- Feature/expose when function [#836](https://github.com/apache/datafusion-python/pull/836) (timsaucer)
42+
- Add Window Functions for use with function builder [#808](https://github.com/apache/datafusion-python/pull/808) (timsaucer)
43+
- chore: fix typos [#844](https://github.com/apache/datafusion-python/pull/844) (mesejo)
44+
- build(ci): use proper mac runners [#841](https://github.com/apache/datafusion-python/pull/841) (Michael-J-Ward)
45+
- Set of small features [#839](https://github.com/apache/datafusion-python/pull/839) (timsaucer)
46+
- chore: fix docstrings, typos [#852](https://github.com/apache/datafusion-python/pull/852) (mesejo)
47+
- chore: Use datafusion re-exported dependencies [#856](https://github.com/apache/datafusion-python/pull/856) (emgeee)
48+
- add guidelines on separating python and rust code [#860](https://github.com/apache/datafusion-python/pull/860) (Michael-J-Ward)
49+
- Update Aggregate functions to take builder parameters [#859](https://github.com/apache/datafusion-python/pull/859) (timsaucer)
50+
51+
## Credits
52+
53+
Thank you to everyone who contributed to this release. Here is a breakdown of commits (PRs merged) per contributor.
54+
55+
```
56+
7 Tim Saucer
57+
5 Daniel Mesejo
58+
4 Michael J Ward
59+
1 Andy Grove
60+
1 Jim Crist-Harif
61+
1 Matt Green
62+
```
63+
64+
Thank you also to everyone who contributed in other ways such as filing issues, reviewing PRs, and providing feedback on this release.
65+
66+
2267
## [40.0.0](https://github.com/apache/datafusion-python/tree/40.0.0) (2024-08-09)
2368

2469
This release consists of 18 commits from 4 contributors. See credits at the end of this changelog for more information.

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "datafusion-python"
20-
version = "40.0.0"
20+
version = "41.0.0"
2121
homepage = "https://datafusion.apache.org/python"
2222
repository = "https://github.com/apache/datafusion-python"
2323
authors = ["Apache DataFusion <[email protected]>"]

0 commit comments

Comments
 (0)