Skip to content

Commit

Permalink
bump version to 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Dec 21, 2021
1 parent 01e7f44 commit e4cecee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.11

- Fix: There had been an issue, there the correct binary size for the longest possible text has been underestimated on Linux then querying a column with UTF-16 encoded characters.
- Fix: There had been an issue, there the correct binary size for the longest possible text has been underestimated on Windown then querying a column with UTF-8 encoded characters.
## 0.1.10

- Allow specifying user and password seperatly from the connection string.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Markus Klein"

# The full version, including alpha/beta/rc tags
release = "0.1.10"
release = "0.1.11"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ def readme():
setup_requires=["milksnake"],
install_requires=["pyarrow", "milksnake"],
extras_require={
"test": ["pytest", "pandas"],
"test": ["pytest"],
},
milksnake_tasks=[build_native],
url="https://github.com/pacman82/arrow-odbc-py",
author="Markus Klein",
version="0.1.10",
version="0.1.11",
license="MIT",
description="Read the data of an ODBC data source as sequence of Apache Arrow record batches.",
long_description=readme(),
Expand Down
2 changes: 1 addition & 1 deletion tests/test_arrow_odbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ def test_iris():
)

for batch in reader:
df = batch.to_pandas()
df = batch.to_pydict()

0 comments on commit e4cecee

Please sign in to comment.