diff --git a/CHANGES b/CHANGES index ff2fe17..10e4adb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +Version 4.4.3, 2021-01-16 + +* Fixes compatibility with OpenSSL v1.1.0+ + Version 4.4.2, 2020-11-19 * Python 3.9 compatibility fix diff --git a/COPYING b/COPYING index 9734e35..207662a 100644 --- a/COPYING +++ b/COPYING @@ -1,5 +1,5 @@ python-hpilo - Manage iLO interfaces from python code -Copyright (C) 2011-2020 Dennis Kaarsemaker +Copyright (C) 2011-2021 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 cd59f15..ece923d 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-2020 Dennis Kaarsemaker +This software is (c) 2011-2021 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 0e8cdf4..5530103 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-2020 Dennis Kaarsemaker +# (c) 2011-2021 Dennis Kaarsemaker # see COPYING for license details import configparser diff --git a/devtools/python-hpilo.spec b/devtools/python-hpilo.spec index 0926165..0bbd60a 100644 --- a/devtools/python-hpilo.spec +++ b/devtools/python-hpilo.spec @@ -1,6 +1,6 @@ Summary: Accessing HP iLO interfaces from python Name: python-hpilo -Version: 4.4.2 +Version: 4.4.3 Release: 1%{?dist} Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz License: GPL/APL diff --git a/docs/conf.py b/docs/conf.py index 2206cd2..d5d8012 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '4.4.2' +version = '4.4.3' # The full version, including alpha/beta/rc tags. -release = '4.4.2' +release = '4.4.3' # 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 b4b8f04..adec4af 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -118,7 +118,7 @@ Development information Author and license ================== -This software is (c) 2011-2020 Dennis Kaarsemaker +This software is (c) 2011-2021 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 2671198..4239ccd 100644 --- a/hpilo.py +++ b/hpilo.py @@ -1,7 +1,7 @@ -# (c) 2011-2020 Dennis Kaarsemaker +# (c) 2011-2021 Dennis Kaarsemaker # see COPYING for license details -__version__ = "4.4.2" +__version__ = "4.4.3" import codecs import io diff --git a/setup.py b/setup.py index 8e901fc..eb2e9ba 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name = "python-hpilo", - version = "4.4.2", + version = "4.4.3", author = "Dennis Kaarsemaker", author_email = "dennis@kaarsemaker.net", url = "http://github.com/seveas/python-hpilo",