Skip to content

Commit

Permalink
Update CHANGELOG (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
brl0 authored Aug 7, 2021
1 parent db730b6 commit b6809e7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
33 changes: 30 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
## Version 0.4.3

Date: 2021-08-05
Date: 2021-08-07

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.
Enhancements:

- 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))
- Add typing information to some functions.
- Update `build_sindex` to pass through `kwargs` to underlying `HilbertRtree` implementation.
- Change `build_sindex` methods to consistently return reference to object to allow for method chaining.

Bug fixes:
- Update `validate_coerce_filesystem` to pass `storage_options` through. ([#78](https://github.com/holoviz/spatialpandas/pull/78))

- Update internal `validate_coerce_filesystem` to pass `storage_options` through. ([#78](https://github.com/holoviz/spatialpandas/pull/78))

Compatibility:

- 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.
- Renames `fname` parameter to `path` to align with the pandas convention.


## Version 0.4.2

Date: 2021-07-28

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.

Compatibility:
Expand Down Expand Up @@ -81,6 +94,8 @@ Bug fixes:

## Version 0.3.4

Date: 2020-02-21

Bug fixes:

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

## Version 0.3.2 / 0.3.3

Date: 2020-01-24

Bug fixes:

- Various reliability improvements for `pack_partitions_to_parquet`


## Version 0.3.1

Date: 2020-01-12

Bug fixes:

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

## Version 0.3.0

Date: 2020-01-11

Enhancements:

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

## Version 0.2.0

Date: 2019-12-28

Enhancements:

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

## Version 0.1.1

Date: 2019-12-18

Enhancements:

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

## Version 0.1.0

Date: 2019-12-02

First public release available on PyPI and the pyviz anaconda channel.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'shapely',
'twine',
'rfc3986',
'keyring'
'keyring',
],
'examples': [
'datashader',
Expand Down

0 comments on commit b6809e7

Please sign in to comment.