Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 7 additions & 11 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
# Change log

## Development

## 0.15.0-rc.2
## 0.15.0

- Accept zero-offset timezone designators (`+00:00`, `-00:00`, `+0000`, `-0000`,
`Z`, `z`) as UTC timezone metadata for timestamp fields
- Infer strings with zero-offset timezone designators as UTC timestamps when
date guessing is enabled

### Thanks

- [@ryzhyk](https://github.com/ryzhyk) added support for zero-offset timezone
designators ([#320](https://github.com/chmp/serde_arrow/pull/320))

## 0.15.0-rc.1

Breaking changes:

- Stricter f32 / f64 to decimal conversions. Only finite floats that are in the
Expand All @@ -24,7 +15,7 @@ Breaking changes:
- Bumped the MSRV to Rust 1.83.
- Drop `arrow<53` support.
- Drop `arrow2` support.
- Updated the `marrow` dependency to `0.3.0-rc.1`.
- Updated the `marrow` dependency to `0.3.0`.

Bug fixes:

Expand All @@ -34,6 +25,11 @@ Bug fixes:
of Arrow view arrays to avoid Rust APIs that may panic in favor of error
producing APIs.

### Thanks

- [@ryzhyk](https://github.com/ryzhyk) added support for zero-offset timezone
designators ([#320](https://github.com/chmp/serde_arrow/pull/320))

## 0.14.2

- Add `arrow=59` support
Expand Down
2 changes: 1 addition & 1 deletion marrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2021"

name = "marrow"
version = "0.3.0-rc.1"
version = "0.3.0"
authors = ["Christopher Prohm <mail@cprohm.de>"]
description = "Minimalist Arrow interop"
readme = "Readme.md"
Expand Down
2 changes: 1 addition & 1 deletion marrow/Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## 0.3.0-rc.1
## 0.3.0

Breaking changes:

Expand Down
4 changes: 2 additions & 2 deletions serde_arrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_arrow"
version = "0.15.0-rc.2"
version = "0.15.0"
authors = ["Christopher Prohm <mail@cprohm.de>"]
edition = "2021"
description = "Convert sequences of Rust objects to Arrow arrays and back again"
Expand Down Expand Up @@ -29,7 +29,7 @@ arrow-54 = ["dep:arrow-array-54", "dep:arrow-schema-54", "marrow/arrow-54"]
arrow-53 = ["dep:arrow-array-53", "dep:arrow-schema-53", "marrow/arrow-53"]

[dependencies]
marrow = { path = "../marrow", version = "0.3.0-rc.1", default-features = false, features = ["serde"] }
marrow = { path = "../marrow", version = "0.3.0", default-features = false, features = ["serde"] }

bytemuck = { version = "1", default-features = false }
# TODO: make optional, only required for str -> date conversions
Expand Down
Loading