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 Oct 4, 2023
1 parent 82233b8 commit 1202688
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
1.2.0 - October 4, 2023
-----------------------

* fix: :doc:`/scripts/csvjoin` uses the correct columns when performing a ``--right`` join.
* Add SQLAlchemy 2 support.
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.1',
'-V', '--version', action='version', version='%(prog)s 1.2.0',
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 @@ -12,7 +12,7 @@

project = 'csvkit'
copyright = '2016, Christopher Groskopf'
version = '1.1.1'
version = '1.2.0'
release = version

# -- General configuration -----------------------------------------------------
Expand Down
10 changes: 0 additions & 10 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,3 @@ Release process
git tag -a x.y.z -m 'x.y.z release.'
git push --follow-tags
#. Upload to PyPI:

.. code-block:: bash
rm -rf dist
python -m build --sdist --wheel
twine upload dist/*
#. Build the documentation on ReadTheDocs manually
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.1',
version='1.2.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 1202688

Please sign in to comment.