Skip to content

Commit b6809e7

Browse files
authored
Update CHANGELOG (#82)
1 parent db730b6 commit b6809e7

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

CHANGELOG.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
## Version 0.4.3
22

3-
Date: 2021-08-05
3+
Date: 2021-08-07
44

5-
This release primarily expands the optional arguments that can be passed to `to_parquet_dask`/`read_parquet_dask` ensuring that `storage_options` is successfully passed where needed. It also adds the ability to pass `storage_options` to the `pandas.to_parquet` function (only for pandas > 1.2) and renames any reference to `fname` with `path` to align with the pandas convention.
5+
Enhancements:
6+
7+
- Expands the optional arguments that can be passed to `to_parquet`, `to_parquet_dask`, `read_parquet`, `read_parquet_dask` ensuring that `storage_options` is appropriately passed where needed. ([#79](https://github.com/holoviz/spatialpandas/pull/79))
8+
- Add typing information to some functions.
9+
- Update `build_sindex` to pass through `kwargs` to underlying `HilbertRtree` implementation.
10+
- Change `build_sindex` methods to consistently return reference to object to allow for method chaining.
611

712
Bug fixes:
8-
- Update `validate_coerce_filesystem` to pass `storage_options` through. ([#78](https://github.com/holoviz/spatialpandas/pull/78))
13+
14+
- Update internal `validate_coerce_filesystem` to pass `storage_options` through. ([#78](https://github.com/holoviz/spatialpandas/pull/78))
15+
16+
Compatibility:
17+
18+
- Adds the ability to pass `storage_options` to the `to_parquet` function for `pandas > 1.2`, otherwise instantiates an `fsspec` filesystem with `storage_options` and passes that.
19+
- Renames `fname` parameter to `path` to align with the pandas convention.
920

1021

1122
## Version 0.4.2
1223

24+
Date: 2021-07-28
25+
1326
This release primarily achieves compatibility with recent releases of Pandas. Many thanks to @Hoxbro for contributing the fixes and @philippjfr for ongoing maintenance of the project.
1427

1528
Compatibility:
@@ -81,6 +94,8 @@ Bug fixes:
8194

8295
## Version 0.3.4
8396

97+
Date: 2020-02-21
98+
8499
Bug fixes:
85100

86101
- Support importing GeoPandas geometry series that contain `None` values.
@@ -98,13 +113,17 @@ Compatibility:
98113

99114
## Version 0.3.2 / 0.3.3
100115

116+
Date: 2020-01-24
117+
101118
Bug fixes:
102119

103120
- Various reliability improvements for `pack_partitions_to_parquet`
104121

105122

106123
## Version 0.3.1
107124

125+
Date: 2020-01-12
126+
108127
Bug fixes:
109128

110129
- Restored `categories` argument to `read_parquet_dask` function
@@ -113,6 +132,8 @@ Bug fixes:
113132

114133
## Version 0.3.0
115134

135+
Date: 2020-01-11
136+
116137
Enhancements:
117138

118139
- Added partial support for the `intersects` geometry array method. Currently, it only
@@ -125,6 +146,8 @@ Enhancements:
125146

126147
## Version 0.2.0
127148

149+
Date: 2019-12-28
150+
128151
Enhancements:
129152

130153
- Added `pack_partitions_to_parquet` method to `DaskGeoDataFrame` ([#19](https://github.com/holoviz/spatialpandas/pull/19))
@@ -133,6 +156,8 @@ Enhancements:
133156

134157
## Version 0.1.1
135158

159+
Date: 2019-12-18
160+
136161
Enhancements:
137162

138163
- Documented dependencies required for the Overview notebook ([#18](https://github.com/holoviz/spatialpandas/pull/18))
@@ -144,4 +169,6 @@ Bug fixes:
144169

145170
## Version 0.1.0
146171

172+
Date: 2019-12-02
173+
147174
First public release available on PyPI and the pyviz anaconda channel.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'shapely',
1616
'twine',
1717
'rfc3986',
18-
'keyring'
18+
'keyring',
1919
],
2020
'examples': [
2121
'datashader',

0 commit comments

Comments
 (0)