From 5881ffab4fba6ea136176a92de58c710704e9653 Mon Sep 17 00:00:00 2001 From: Dennis Kaarsemaker Date: Sat, 16 Jan 2021 15:38:25 +0100 Subject: [PATCH] Version 4.4.3, and it's 2021 --- CHANGES | 4 ++++ COPYING | 2 +- README.md | 2 +- devtools/hpilo_mirror | 2 +- devtools/python-hpilo.spec | 2 +- docs/conf.py | 4 ++-- docs/index.rst | 2 +- hpilo.py | 4 ++-- setup.py | 2 +- 9 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGES b/CHANGES index ff2fe17e..10e4adb3 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 9734e357..207662af 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 cd59f15b..ece923dc 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 0e8cdf44..55301038 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 09261650..0bbd60a2 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 2206cd27..d5d80124 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 b4b8f04f..adec4af5 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 26711988..4239ccdf 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 8e901fca..eb2e9bac 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",