From 2fb245b5bcb89e6f5e377239558efb94dbe8cfd6 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Thu, 30 Dec 2021 01:02:30 +0100 Subject: [PATCH] bump version to 0.1.12 --- Cargo.lock | 32 ++++++++++++++++---------------- Changelog.md | 4 ++++ doc/source/conf.py | 2 +- rust/Cargo.toml | 2 +- setup.py | 2 +- 5 files changed, 23 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b26b702..ab84537 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,9 +13,9 @@ dependencies = [ [[package]] name = "arrow" -version = "6.4.0" +version = "6.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5754504883d2a0f193df3a60565819be37ae4c2d9fc3bac898c6eb722dc2806e" +checksum = "216c6846a292bdd93c2b93c1baab58c32ff50e2ab5e8d50db333ab518535dd8b" dependencies = [ "bitflags", "chrono", @@ -36,9 +36,9 @@ dependencies = [ [[package]] name = "arrow-odbc" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c2aa0f41ea9f9ea8a0ac6f3d645b38fa37c49816f82b81053a1ee638be06084" +checksum = "6cf941822d4eb57b5cb61ed687b9631451607be7c1c0a4d63b43a519e049e4eb" dependencies = [ "arrow", "atoi", @@ -94,9 +94,9 @@ checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c" [[package]] name = "calloop" -version = "0.9.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42dcfbd723aa6eff9f024cfd5ad08b11144d79b2d8d37b4a31a006ceab255c77" +checksum = "bf2eec61efe56aa1e813f5126959296933cf0700030e4314786c48779a66ab82" dependencies = [ "log", "nix", @@ -917,18 +917,18 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.34" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f84e92c0f7c9d58328b85a78557813e4bd845130db68d7184635344399423b1" +checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" dependencies = [ "unicode-xid", ] [[package]] name = "quote" -version = "1.0.10" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" +checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d" dependencies = [ "proc-macro2", ] @@ -1069,9 +1069,9 @@ checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" [[package]] name = "smithay-client-toolkit" -version = "0.15.2" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "210cf40de565aaaa085face1d860b17f6aee9f76f9d2816307ea2cc45eeb64f3" +checksum = "1325f292209cee78d5035530932422a30aa4c8fda1a16593ac083c1de211e68a" dependencies = [ "bitflags", "calloop", @@ -1100,9 +1100,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "syn" -version = "1.0.82" +version = "1.0.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59" +checksum = "ecb2e6da8ee5eb9a61068762a32fa9619cc591ceb055b3687f4cd4051ec2e06b" dependencies = [ "proc-macro2", "quote", @@ -1157,9 +1157,9 @@ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" [[package]] name = "version_check" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wasi" diff --git a/Changelog.md b/Changelog.md index 5ee71a9..ff67aa5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.12 + +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-8 encoded characters. + ## 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. diff --git a/doc/source/conf.py b/doc/source/conf.py index 9da42d9..ecca13a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -23,7 +23,7 @@ author = "Markus Klein" # The full version, including alpha/beta/rc tags -release = "0.1.11" +release = "0.1.12" # -- General configuration --------------------------------------------------- diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 81ce927..0ab94c2 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -14,5 +14,5 @@ name = "native" crate-type = ["cdylib"] [dependencies] -arrow-odbc = "0.6.2" +arrow-odbc = "0.6.4" lazy_static = "1.4.0" diff --git a/setup.py b/setup.py index 669ea9b..7e936cc 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def readme(): milksnake_tasks=[build_native], url="https://github.com/pacman82/arrow-odbc-py", author="Markus Klein", - version="0.1.11", + version="0.1.12", license="MIT", description="Read the data of an ODBC data source as sequence of Apache Arrow record batches.", long_description=readme(),