diff --git a/e4s_cl/version.py b/e4s_cl/version.py index 2e59feb4..74f543fb 100644 --- a/e4s_cl/version.py +++ b/e4s_cl/version.py @@ -1,5 +1,5 @@ PACKAGE = "e4s_cl" -VERSION = (1, 0, 1) +VERSION = (1, 0, 2) RELEASE_CANDIDATE = 0 __version__ = '.'.join(map( str, VERSION)) + (f"rc{RELEASE_CANDIDATE}" if RELEASE_CANDIDATE else '') diff --git a/pylintrc b/pylintrc index 766ead45..7eb69683 100644 --- a/pylintrc +++ b/pylintrc @@ -378,4 +378,4 @@ exclude-protected=_asdict,_fields,_replace,_source,_make # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +#overgeneral-exceptions=Exception