diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06913ebc2..eebf5bbd6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Unreleased ----------- +1.5.0 - March 28, 2024 +---------------------- * feat: Add support for Zstandard files with the ``.zst`` extension, if the ``zstandard`` package is installed. * feat: :doc:`/scripts/csvformat` adds a :code:`--out-asv` (:code:`--A`) option to use the ASCII unit separator and record separator. diff --git a/csvkit/cli.py b/csvkit/cli.py index b3d531373..f8c3ba432 100644 --- a/csvkit/cli.py +++ b/csvkit/cli.py @@ -236,7 +236,7 @@ def _init_common_parser(self): '1-based numbering.') self.argparser.add_argument( - '-V', '--version', action='version', version='%(prog)s 1.4.0', + '-V', '--version', action='version', version='%(prog)s 1.5.0', help='Display version information and exit.') def _open_input_file(self, path, opened=False): diff --git a/docs/conf.py b/docs/conf.py index bddf83fa0..993fc8843 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = 'csvkit' copyright = '2016, Christopher Groskopf and James McKinney' -version = '1.4.0' +version = '1.5.0' release = version # -- General configuration ----------------------------------------------------- diff --git a/setup.py b/setup.py index 550dd700b..86263b291 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='csvkit', - version='1.4.0', + version='1.5.0', description='A suite of command-line tools for working with CSV, the king of tabular file formats.', long_description=long_description, long_description_content_type='text/x-rst',