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 Feb 22, 2023
1 parent feb57a0 commit fbbc5e8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.1.1 - February 22, 2023
-------------------------

* feat: :doc:`/scripts/csvstack` handles files with columns in different orders or with different names.

1.1.0 - January 3, 2023
-----------------------

Expand Down
2 changes: 1 addition & 1 deletion csvkit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _init_common_parser(self):
'1-based numbering.')

self.argparser.add_argument(
'-V', '--version', action='version', version='%(prog)s 1.1.0',
'-V', '--version', action='version', version='%(prog)s 1.1.1',
help='Display version information and exit.')

def _open_input_file(self, path):
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.1.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='csvkit',
version='1.1.0',
version='1.1.1',
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 fbbc5e8

Please sign in to comment.