Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Mar 9, 2022
1 parent 2025bcd commit d8d73d3
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 44 deletions.
77 changes: 37 additions & 40 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

## 0.1.17

- Updated Rust dependencies

## 0.1.16

- Updated Rust dependencies
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@ This package has been designed to be easily deployable, so it provides a prebuil
```python
from arrow_odbc import read_arrow_batches_from_odbc

connection_string="Driver={ODBC Driver 17 for SQL Server};Server=localhost;UID=SA;PWD=My@Test@Password1;"
connection_string="Driver={ODBC Driver 17 for SQL Server};Server=localhost;"

reader = read_arrow_batches_from_odbc(
query=f"SELECT * FROM MyTable WHERE a=?",
connection_string=connection_string,
batch_size=1000,
parameters=["I'm a positional query parameter"],
user="SA",
password="My@Test@Password",
)

for batch in reader:
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.16"
release = "0.1.17"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ name = "native"
crate-type = ["cdylib"]

[dependencies]
arrow-odbc = "0.8.3"
arrow-odbc = "0.8.5"
lazy_static = "1.4.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def readme():
milksnake_tasks=[build_native],
url="https://github.com/pacman82/arrow-odbc-py",
author="Markus Klein",
version="0.1.16",
version="0.1.17",
license="MIT",
description="Read the data of an ODBC data source as sequence of Apache Arrow record batches.",
long_description=readme(),
Expand Down

0 comments on commit d8d73d3

Please sign in to comment.