Skip to content

Commit

Permalink
Merge pull request #9 from laimaretto/devel
Browse files Browse the repository at this point in the history
4.0.1
  • Loading branch information
laimaretto authored Mar 20, 2024
2 parents 5060989 + d2d208e commit dd6547d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
[4.0.1 - 2024-03-20]

- Update of libs:
- textfsm==1.1.3
- pandas>=1.5.2,<=2.0.3
- XlsxWriter>=3.0.3,<=3.2.0
- ttp>=0.9.0,<=0.9.5

[3.7.2 - 2023-07-04]

- Update of lib `textFSM` to 1.1.3.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='logChecker',
version='4.0.0',
version='4.0.1',
description='A simple log analysis tool',
long_description='A parsing tool to easily perform pre and post check comparisons after a maintenance window.',
long_description_content_type='text/x-rst',
Expand Down
2 changes: 1 addition & 1 deletion src/logChecker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "3.7.2"
__version__ = "4.0.1"
__author__ = 'Lucas Aimaretto'
2 changes: 1 addition & 1 deletion src/logChecker/logChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def main():
parser1.add_argument('-ri', '--routerId', choices=['name','ip','both'], default='name', type=str, help='Router Id to be used within the tables in the Excel report. Default=name.')
parser1.add_argument('-sr', '--showResults', choices=['all','diff'], default='all', type=str, help='When comparison is done, show all variables or only the differences. Only available if --ri/--routerId=name. Default=all)')
parser1.add_argument('-ga', '--genAtp', type=str, help='Generate ATP document in docx format, based on the contents of the json files from taskAutom. Default=no', default='no', choices=['no','yes'])
parser1.add_argument('-v' ,'--version', help='Version', action='version', version='Lucas Aimaretto - (c)2024 - Version: 4.0.0' )
parser1.add_argument('-v' ,'--version', help='Version', action='version', version='Lucas Aimaretto - (c)2024 - Version: 4.0.1' )

args = parser1.parse_args()

Expand Down

0 comments on commit dd6547d

Please sign in to comment.