Skip to content

Commit

Permalink
more robust decimal parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Jan 10, 2024
1 parent 9126ae5 commit ac0d266
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 61 deletions.
114 changes: 55 additions & 59 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.1.2

- Updated Rust dependencies. This includes an update to `arrow-odbc` (the Rust crate) which features a more robust parsing of decimals. Decimals now work even if they are rendered with a comma `,` as a radix character instead of a decimal point (`.`).

## 2.1.1

- Change default `max_bytes_per_batch`` from 2MiB to 256MiB.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Markus Klein"

# The full version, including alpha/beta/rc tags
release = "2.1.1"
release = "2.1.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "arrow-odbc"
authors = [{name = "Markus Klein"}]
description="Read the data of an ODBC data source as sequence of Apache Arrow record batches."
readme = "README.md"
version = "2.1.1"
version = "2.1.2"
dependencies = ["cffi", "pyarrow >= 8.0.0"]

[project.license]
Expand Down

0 comments on commit ac0d266

Please sign in to comment.