Skip to content

Commit

Permalink
Release 0.94
Browse files Browse the repository at this point in the history
mtkaczyk committed Feb 11, 2020
1 parent 4f6c4b7 commit 1d4a196
Showing 12 changed files with 30 additions and 13 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
### v0.94 / 2020-02-04

[Commit list](https://github.com/intel/ledmon/compare/v0.93...v0.94)

Enhancements

* Support for AMD IPMI enclosure management
* Support for NPEM

Bug fixes

* Documentation updates
* Fix activity indicator state for SMP
* Fix for GCC 9 compilation
* Update ipbi pattern for drives with previous pattern unknown

### v0.93 / 2019-10-17

[Commit list](https://github.com/intel/ledmon/compare/v0.92...v0.93)
5 changes: 3 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This package contains the Enclosure LED Utilities, version 0.93
This package contains the Enclosure LED Utilities, version 0.94

Copyright (C) 2009-2019 Intel Corporation.
Copyright (C) 2009-2020 Intel Corporation.

All files in this package can be freely distributed and used according
to the terms of the GNU General Public License, version 2.
@@ -25,6 +25,7 @@ Run "make" command to compile the package.
Following packages are required for building and compiling:
a. systemd-devel (libudev)
b. sg3_utils-devel
c. libpci (pciutils-devel)

3. (Un)installing the package.
--------------------------
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

AC_PREREQ([2.69])
AC_INIT([ledmon], [0.93])
AC_INIT([ledmon], [0.94])
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST([PACKAGE_DATE], "October 2019")
AC_SUBST([PACKAGE_DATE], "February 2020")
AM_INIT_AUTOMAKE([-Wall -Werror foreign])

# Checks for programs.
2 changes: 1 addition & 1 deletion doc/ledctl.pod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Intel(R) Enclosure LED Utilities
# Copyright (C) 2009-2019 Intel Corporation.
# Copyright (C) 2009-2020 Intel Corporation.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Intel(R) Enclosure LED Utilities
# Copyright (C) 2009-2019 Intel Corporation.
# Copyright (C) 2009-2020 Intel Corporation.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/block.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2009-2019 Intel Corporation.
* Copyright (C) 2009-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/cntrl.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2009-2019 Intel Corporation.
* Copyright (C) 2009-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/cntrl.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2009-2018 Intel Corporation.
* Copyright (C) 2009-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/npem.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2009-2019 Intel Corporation.
* Copyright (C) 2019-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/npem.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2009-2019 Intel Corporation.
* Copyright (C) 2019-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/udev.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Intel(R) Enclosure LED Utilities
* Copyright (C) 2017-2019 Intel Corporation.
* Copyright (C) 2017-2020 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@
* in makefile to reflect current version number.
*/
#ifndef VERSION_MINOR
#define VERSION_MINOR 93
#define VERSION_MINOR 94
#endif

#endif /* _VERSION_H_INCLUDED_ */

0 comments on commit 1d4a196

Please sign in to comment.