Skip to content

Commit

Permalink
build: Iterate the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Mar 28, 2024
1 parent 7fa346f commit 0647faf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion csvkit/cli.py
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 -----------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 0647faf

Please sign in to comment.