Skip to content

Commit

Permalink
Version 4.2 bump and administrativa
Browse files Browse the repository at this point in the history
* Copyright year updates
* Add contributor lists to docs and COPYING
* We support ilo 5
* docs/index.html still had outdated minimum version updates
  • Loading branch information
seveas committed Apr 10, 2018
1 parent ee87db4 commit 5ced66b
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 12 deletions.
7 changes: 5 additions & 2 deletions CHANGES
@@ -1,9 +1,12 @@
Version 4.2, XXXX-XX-XX
Version 4.2, 2018-04-10
! Backwards compatibility warning
The output of get_embedded_health changed: the network interfaces are now
returned as a list instead of a dict that's keyd on the port name, as port
names are not unique. This will make iLO interfaces and interfaces on
non-primary nic's show up in the output.
* call_delayed now handles exceptions (such as those caused by calling
unsupported functions) better
* Support for more new methods and attributes

Version 4.1, 2018-01-21
* Fix the firmware updater
Expand Down Expand Up @@ -150,7 +153,7 @@ Version 2.4.1, 2013-11-06

Version 2.4, 2013-10-27

* Much better ipv6 support
* Much better ipv6 support

Version 2.3, 2013-10-11

Expand Down
17 changes: 17 additions & 0 deletions COPYING
Expand Up @@ -16,3 +16,20 @@ limitations, see either

- http://www.gnu.org/licenses/ for the GNU GPL
- http://www.apache.org/licenses/LICENSE-2.0 for the Apache license

The following people have generously contributed patches to python-hpilo:

* Alexander Gubin https://github.com/alxgu
* Alexey Vekshin https://github.com/veksh
* Ali Asad Lotia https://github.com/lotia
* Andrew Glen-Young https://github.com/agy
* Christoph Handel https://github.com/fragfutter
* Frederic Brin https://github.com/ExaneServerTeam
* Hans Guthrie https://github.com/hansdg1
* Kevin Sweeney https://github.com/kevints
* Nathan Garabedian https://github.com/ngara
* Peter Fisher https://github.com/peterfisher
* Ronald van Zon https://github.com/Eagllus
* Sten Spans https://github.com/sspans
* Vinson Lee https://github.com/vinsonlee
* Vito Piserchia https://github.com/vpiserchia
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '4.1'
version = '4.2'
# The full version, including alpha/beta/rc tags.
release = '4.1'
release = '4.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
19 changes: 19 additions & 0 deletions docs/contributing.rst
Expand Up @@ -28,4 +28,23 @@ Coding guidelines
parser/generator tests and, if applicable, a test that manipulates the iLO.
See the `tests/README` file in the git repository for more details on tests.

Contributors
------------
The following people have generously contributed patches to python-hpilo:

* `Alexander Gubin <https://github.com/alxgu>`_
* `Alexey Vekshin <https://github.com/veksh>`_
* `Ali Asad Lotia <https://github.com/lotia>`_
* `Andrew Glen-Young <https://github.com/agy>`_
* `Christoph Handel <https://github.com/fragfutter>`_
* `Frederic Brin <https://github.com/ExaneServerTeam>`_
* `Hans Guthrie <https://github.com/hansdg1>`_
* `Kevin Sweeney <https://github.com/kevints>`_
* `Nathan Garabedian <https://github.com/ngara>`_
* `Peter Fisher <https://github.com/peterfisher>`_
* `Ronald van Zon <https://github.com/Eagllus>`_
* `Sten Spans <https://github.com/sspans>`_
* `Vinson Lee <https://github.com/vinsonlee>`_
* `Vito Piserchia <https://github.com/vpiserchia>`_

.. _GitHub: https://github.com/seveas/python-hpilo
6 changes: 3 additions & 3 deletions docs/index.rst
Expand Up @@ -53,8 +53,8 @@ Compatibility
This module is written with compatibility as main priority. Currently supported
are:

* All RILOE II/iLO versions up to and including iLO 4
* Python 2.4-2.7 and python 3.2 and newer
* All RILOE II/iLO versions up to and including iLO 5
* Python 2.6-2.7 and python 3.5 and newer
* Any operating system Python runs on

iLOs can be managed both locally using `hponcfg` or remotely using the iLO's
Expand Down Expand Up @@ -97,7 +97,7 @@ Example applications
====================
There are several example applications in the `examples/` directory. Note that
while `hpilo.py` and `hpilo_cli` are compatible with python versions as old as
2.4, some examples may require newer versions of python and have additional
2.6, some examples may require newer versions of python and have additional
dependencies.

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions hpilo.py
@@ -1,7 +1,7 @@
# (c) 2011-2016 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# (c) 2011-2018 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# see COPYING for license details

__version__ = "4.1"
__version__ = "4.2"

import codecs
import io
Expand Down
2 changes: 1 addition & 1 deletion hpilo_cli
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
# (c) 2011-2016 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# (c) 2011-2018 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# see COPYING for license details

import hpilo
Expand Down
2 changes: 1 addition & 1 deletion hpilo_fw.py
@@ -1,6 +1,6 @@
# Downloader / extracter for latest iLO2 / iLO3 / iLO4 firmware
#
# (c) 2011-2016 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# (c) 2011-2018 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# see COPYING for license details

import tarfile
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name = "python-hpilo",
version = "4.1",
version = "4.2",
author = "Dennis Kaarsemaker",
author_email = "dennis@kaarsemaker.net",
url = "http://github.com/seveas/python-hpilo",
Expand Down

0 comments on commit 5ced66b

Please sign in to comment.