diff --git a/LICENSE.txt b/LICENSE.txt index 7f65e62..824dd27 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 - 2023 Ricardo Bartels +Copyright (c) 2020 - 2024 Ricardo Bartels Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 16fe8ac..205b131 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ It will also create a inventory of all components of a system. R.I.P. IPMI -Version: 1.7.0 (2024-01-10) +Version: 1.7.1 (2024-02-13) mandatory arguments: -H HOST, --host HOST define the host to request. To change the port just @@ -346,9 +346,9 @@ suggestions for changes/improvements then please create a GitHub issue. "host_that_collected_inventory": "inventory-collector.example.com", "inventory_id": null, "inventory_name": null, - "inventory_layout_version": "1.4.0", - "script_version": "1.4.1", - "start_of_data_collection": "2021-04-01T09:09:07+02:00" + "inventory_layout_version": "1.7.0", + "script_version": "1.7.1", + "start_of_data_collection": "2024-02-13T19:09:07+02:00" } } ``` diff --git a/check_redfish.py b/check_redfish.py index b4568b9..56795af 100755 --- a/check_redfish.py +++ b/check_redfish.py @@ -16,8 +16,8 @@ R.I.P. IPMI """ -__version__ = "1.7.0" -__version_date__ = "2024-01-10" +__version__ = "1.7.1" +__version_date__ = "2024-02-13" __author__ = "Ricardo Bartels " __description__ = "Check Redfish Plugin" __license__ = "MIT" diff --git a/cr_module/classes/inventory.py b/cr_module/classes/inventory.py index 14cef44..2c231ac 100644 --- a/cr_module/classes/inventory.py +++ b/cr_module/classes/inventory.py @@ -17,7 +17,7 @@ # inventory definition -inventory_layout_version_string = "1.4.0" +inventory_layout_version_string = "1.7.1" # noinspection PyBroadException