Skip to content

Commit

Permalink
Version and year updates
Browse files Browse the repository at this point in the history
  • Loading branch information
seveas committed Oct 6, 2020
1 parent 4d0d306 commit bd7896a
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion COPYING
@@ -1,5 +1,5 @@
python-hpilo - Manage iLO interfaces from python code
Copyright (C) 2011-2018 Dennis Kaarsemaker <dennis@kaarsemaker.net>
Copyright (C) 2011-2020 Dennis Kaarsemaker <dennis@kaarsemaker.net>

This program is free software: you can redistribute it and/or modify
it under the terms of (at your option) either the Apache License,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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 <dennis@kaarsemaker.net>
This software is (c) 2011-2020 Dennis Kaarsemaker <dennis@kaarsemaker.net>

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
Expand Down
2 changes: 1 addition & 1 deletion devtools/hpilo_mirror
Expand Up @@ -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 <dennis@kaarsemaker.net>
# (c) 2011-2020 Dennis Kaarsemaker <dennis@kaarsemaker.net>
# see COPYING for license details

import configparser
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -118,7 +118,7 @@ Development information

Author and license
==================
This software is (c) 2011-2018 Dennis Kaarsemaker <dennis@kaarsemaker.net>
This software is (c) 2011-2020 Dennis Kaarsemaker <dennis@kaarsemaker.net>

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

__version__ = "4.3"
__version__ = "4.4"

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

import hpilo
Expand Down
4 changes: 2 additions & 2 deletions 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 <dennis@kaarsemaker.net>
# (c) 2011-2020 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.3",
version = "4.4",
author = "Dennis Kaarsemaker",
author_email = "dennis@kaarsemaker.net",
url = "http://github.com/seveas/python-hpilo",
Expand Down

0 comments on commit bd7896a

Please sign in to comment.