diff --git a/csvkit-2.0.1.tar.gz b/csvkit-2.1.0.tar.gz similarity index 34% rename from csvkit-2.0.1.tar.gz rename to csvkit-2.1.0.tar.gz index 3e61b1b02cdda9fbf1af7a65ad8e599539211ea3..e234c455fccf3c635513f34f9dab197cdfe887e5 100644 Binary files a/csvkit-2.0.1.tar.gz and b/csvkit-2.1.0.tar.gz differ diff --git a/python-csvkit.spec b/python-csvkit.spec index b83551609328e02493453a931827a1a258a20573..ffa9c327200131a61168ebdd845650874c6795ee 100644 --- a/python-csvkit.spec +++ b/python-csvkit.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-csvkit -Version: 2.0.1 +Version: 2.1.0 Release: 1 Summary: A suite of command-line tools for working with CSV, the king of tabular file formats. License: MIT URL: https://github.com/wireservice/csvkit -Source0: https://files.pythonhosted.org/packages/b6/29/51d7c3221669a4a63410f9be61178436109217d77a31b539f41ef6c1448e/csvkit-2.0.1.tar.gz +Source0: https://files.pythonhosted.org/packages/80/e2/b6317dc421111a8158ce186095208127b4d53d823b40d9268cffbf06b73b/csvkit-2.1.0.tar.gz BuildArch: noarch Requires: python3-agate @@ -42,7 +42,7 @@ Provides: python3-csvkit-doc A suite of utilities for converting to and working with CSV, the king of tabular file formats. %prep -%autosetup -n csvkit-2.0.1 +%autosetup -n csvkit-2.1.0 %build %py3_build @@ -82,6 +82,13 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Wed Aug 13 2025 lifeifei - 2.1.0-1 +- update package to version 2.1.0 + * Add a --add-bom option to add the UTF-8 byte-order mark (BOM) to CSV output, for Excel compatibility. + * sql2csv uses the stream_results=True execution option by default, to avoid loading all data into memory at once. + * Add --sql-delimiter option to csvsql to set a custom delimiter for SQL statements in --query, --before-insert, and --after-insert. + * For type inference, number takes priority over date-time when not using the --datetime-format option. + * Fri Aug 9 2024 lilu - 2.0.1-1 - Update package to version 2.0.1 - feat: csvsql adds --min-col-len and --col-len-multiplier options