Skip to content
Snippets Groups Projects
Commit 38db68d4 authored by Nicolas  MAILLET's avatar Nicolas MAILLET
Browse files

v2.0.1

parent cb4dcd56
No related branches found
No related tags found
No related merge requests found
Pipeline #99742 passed
========= =========
CHANGELOG CHANGELOG
========= =========
- 2.0.1
Fix argparse bug preventing -h option to correctly be displayed
Correct typo
- 2.0.0 - 2.0.0
Tested on Python 3.10 et 3.11 Tested on Python 3.10 et 3.11
......
...@@ -26,7 +26,7 @@ author = 'Nicolas Maillet' ...@@ -26,7 +26,7 @@ author = 'Nicolas Maillet'
# The short X.Y version # The short X.Y version
version = '' version = ''
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '2.0.0' release = '2.0.1'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
necessary functions necessary functions
""" """
__version_info__ = ('2', '0', '0') __version_info__ = ('2', '0', '1')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
__revision_date__ = "2023-02-22" __revision_date__ = "2023-03-14"
__author__ = "Nicolas Maillet" __author__ = "Nicolas Maillet"
import argparse import argparse
......
...@@ -36,7 +36,7 @@ setup( ...@@ -36,7 +36,7 @@ setup(
# For a discussion on single-sourcing the version across setup.py and the # For a discussion on single-sourcing the version across setup.py and the
# project code, see # project code, see
# https://packaging.python.org/en/latest/single_source_version.html # https://packaging.python.org/en/latest/single_source_version.html
version='2.0.0', # Required version='2.0.1', # Required
# This is a one-line description or tagline of what your project does. This # This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field: # corresponds to the "Summary" metadata field:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment