diff --git a/CHANGES b/CHANGES index 658a23e..8d8710e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +Version 4.4, 2020-10-06 + +* Support HPE fwpkg firmware packaging +* Bugfixes in delete_sso_server and get_generic_ldap_enabled +* Fix in the firmware mirror script + Version 4.3, 2018-08-23 * Backwards compatibility with code that uses the ssl_version parameter diff --git a/COPYING b/COPYING index 033e813..9734e35 100644 --- a/COPYING +++ b/COPYING @@ -1,5 +1,5 @@ python-hpilo - Manage iLO interfaces from python code -Copyright (C) 2011-2018 Dennis Kaarsemaker +Copyright (C) 2011-2020 Dennis Kaarsemaker This program is free software: you can redistribute it and/or modify it under the terms of (at your option) either the Apache License, diff --git a/README.md b/README.md index 7da1393..cd59f15 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ machine you run this code on, not the managed server. Author and license ------------------ -This software is (c) 2011-2018 Dennis Kaarsemaker +This software is (c) 2011-2020 Dennis Kaarsemaker This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/devtools/hpilo_mirror b/devtools/hpilo_mirror index 3bcbd39..0e8cdf4 100755 --- a/devtools/hpilo_mirror +++ b/devtools/hpilo_mirror @@ -3,7 +3,7 @@ # Mirror the iLO firmware directory and create firmware.conf for the hpilo # repository. Not meant to be used by end users. # -# (c) 2011-2018 Dennis Kaarsemaker +# (c) 2011-2020 Dennis Kaarsemaker # see COPYING for license details import configparser diff --git a/docs/conf.py b/docs/conf.py index ce23476..58d2f51 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,16 +43,16 @@ # General information about the project. project = u'python-hpilo' -copyright = u'2011-2018, Dennis Kaarsemaker' +copyright = u'2011-2020, Dennis Kaarsemaker' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '4.3' +version = '4.4' # The full version, including alpha/beta/rc tags. -release = '4.3' +release = '4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 35a7359..b4b8f04 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -118,7 +118,7 @@ Development information Author and license ================== -This software is (c) 2011-2018 Dennis Kaarsemaker +This software is (c) 2011-2020 Dennis Kaarsemaker This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/hpilo.py b/hpilo.py index 03327bf..6080483 100644 --- a/hpilo.py +++ b/hpilo.py @@ -1,7 +1,7 @@ -# (c) 2011-2018 Dennis Kaarsemaker +# (c) 2011-2020 Dennis Kaarsemaker # see COPYING for license details -__version__ = "4.3" +__version__ = "4.4" import codecs import io diff --git a/hpilo_cli b/hpilo_cli index 144aad8..fce19e0 100755 --- a/hpilo_cli +++ b/hpilo_cli @@ -1,6 +1,6 @@ #!/usr/bin/python # -# (c) 2011-2018 Dennis Kaarsemaker +# (c) 2011-2020 Dennis Kaarsemaker # see COPYING for license details import hpilo diff --git a/hpilo_fw.py b/hpilo_fw.py index 8a57461..c94d24c 100644 --- a/hpilo_fw.py +++ b/hpilo_fw.py @@ -1,6 +1,6 @@ -# Downloader / extracter for latest iLO2 / iLO3 / iLO4 firmware +# Downloader / extracter for latest iLO2 / iLO3 / iLO4 / iLO5 firmware # -# (c) 2011-2018 Dennis Kaarsemaker +# (c) 2011-2020 Dennis Kaarsemaker # see COPYING for license details import tarfile diff --git a/setup.py b/setup.py index 6831500..d6414c6 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup(name = "python-hpilo", - version = "4.3", + version = "4.4", author = "Dennis Kaarsemaker", author_email = "dennis@kaarsemaker.net", url = "http://github.com/seveas/python-hpilo",