From 4985377efd3e6ff69f7579451428f0d6407477dd Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Sun, 17 Mar 2024 22:13:44 +0100 Subject: [PATCH] bump version to v6.0.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c028d597..4a8658cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -980,7 +980,7 @@ checksum = "6c219b6a4cd9eb167239d921d7348132cdff2eca05abbf1094e7f7ec9b8936b6" [[package]] name = "odbc2parquet" -version = "5.1.2" +version = "6.0.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 885f0452..16583e6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odbc2parquet" -version = "5.1.2" +version = "6.0.0" authors = ["Markus Klein"] edition = "2021" repository = "https://github.com/pacman82/odbc2parquet" diff --git a/Changelog.md b/Changelog.md index a74517e7..ff5194bc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## 6.0.0 + +* File extensions are now retained then splitting files. E.g. if `--output` is 'my_results.parquet' and split into two files they will be named 'my_results_01.parquet' and 'my_results_02.parquet'. Previously there has been always the ending '.par' attached. + ## 5.1.2 * Fix: 5.1.0 introduced a regression, which caused output file enumeration to happen even if file splitting is not activated, if `--no-empty-file` had been set.