Skip to content

Commit 23e7ab6

Browse files
committed
build: Iterate the version number
1 parent b8d152b commit 23e7ab6

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

CHANGELOG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Other changes:
1919

2020
* feat: The :code:`--quoting` option accepts 4 (`csv.QUOTE_STRINGS <https://docs.python.org/3/library/csv.html#csv.QUOTE_STRINGS>`__) and 5 (`csv.QUOTE_NOTNULL <https://docs.python.org/3/library/csv.html#csv.QUOTE_NOTNULL>`__) on Python 3.12.
2121
* feat: :doc:`/scripts/csvformat`: The :code:`--out-quoting` option accepts 4 (`csv.QUOTE_STRINGS <https://docs.python.org/3/library/csv.html#csv.QUOTE_STRINGS>`__) and 5 (`csv.QUOTE_NOTNULL <https://docs.python.org/3/library/csv.html#csv.QUOTE_NOTNULL>`__) on Python 3.12.
22-
* fix: :doc:`/scripts/csvclean`: The :code:`--join-short-rows` option no longer reports length mismatch errors that were fixed.
2322
* fix: :doc:`/scripts/csvformat`: The :code:`--out-quoting` option works with 2 (`csv.QUOTE_NONUMERIC <https://docs.python.org/3/library/csv.html#csv.QUOTE_NOTNUMERIC>`__). Use the :code:`--locale` option to set the locale of any formatted numbers.
23+
* fix: :doc:`/scripts/csvclean`: The :code:`--join-short-rows` option no longer reports length mismatch errors that were fixed.
2424

2525
1.5.0 - March 28, 2024
2626
----------------------

csvkit/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def _init_common_parser(self):
244244
'1-based numbering.')
245245

246246
self.argparser.add_argument(
247-
'-V', '--version', action='version', version='%(prog)s 1.5.0',
247+
'-V', '--version', action='version', version='%(prog)s 2.0.0',
248248
help='Display version information and exit.')
249249

250250
def _open_input_file(self, path, opened=False):

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
project = 'csvkit'
1414
copyright = '2016, Christopher Groskopf and James McKinney'
15-
version = '1.5.0'
15+
version = '2.0.0'
1616
release = version
1717

1818
# -- General configuration -----------------------------------------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='csvkit',
8-
version='1.5.0',
8+
version='2.0.0',
99
description='A suite of command-line tools for working with CSV, the king of tabular file formats.',
1010
long_description=long_description,
1111
long_description_content_type='text/x-rst',

tests/test_utilities/test_csvformat.py

-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ def test_locale(self):
107107
'1.7,200000000,""',
108108
])
109109

110-
111110
def test_launch_new_instance(self):
112111
with patch.object(sys, 'argv', [self.Utility.__name__.lower(), 'examples/dummy.csv']):
113112
launch_new_instance()

0 commit comments

Comments
 (0)