Skip to content

Commit

Permalink
Release 0.93
Browse files Browse the repository at this point in the history
Signed-off-by: Mariusz Dabrowski <[email protected]>
  • Loading branch information
mdabrows committed Oct 17, 2019
1 parent 67236b0 commit 1d72f9c
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
### v0.93 / 2019-10-17

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

Enhancements

* Support for AMD SGPIO enclosure management
* Migration to GNU Autotools build system
* Added more strict compilation flags

Bug fixes

* Fixed segfault when a value is missing from ibpi_str
* Use proper format string with syslog()
* Fixed issues reported by static analysis
* Removed unused SGPIO structures
* Added udev_device reference clean-up
* Hidden ipmi error messages on non-dell platforms

### v0.92 / 2019-04-12

[Commit list](https://github.com/intel/ledmon/compare/v0.91-fixed...v0.92)
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This package contains the Enclosure LED Utilities, version 0.92
This package contains the Enclosure LED Utilities, version 0.93

Copyright (C) 2009-2019 Intel Corporation.

Expand Down
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.92])
AC_INIT([ledmon], [0.93])
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST([PACKAGE_DATE], "April 2019")
AC_SUBST([PACKAGE_DATE], "October 2019")
AM_INIT_AUTOMAKE([-Wall -Werror foreign])

# Checks for programs.
Expand Down
2 changes: 1 addition & 1 deletion src/ledctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const char *ibpi_str[] = {
* information about the version of ledctl utility.
*/
static char *ledctl_version = "Intel(R) Enclosure LED Control Application %d.%d %s\n"
"Copyright (C) 2009-2018 Intel Corporation.\n";
"Copyright (C) 2009-2019 Intel Corporation.\n";

/**
* Internal variable of monitor service. It is used to help parse command line
Expand Down
2 changes: 1 addition & 1 deletion src/ledmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const char *ibpi_str[] = {
* information about the version of monitor service.
*/
static char *ledmon_version = "Intel(R) Enclosure LED Monitor Service %d.%d %s\n"
"Copyright (C) 2009-2018 Intel Corporation.\n";
"Copyright (C) 2009-2019 Intel Corporation.\n";

/**
* Internal variable of monitor service. It is used to help parse command line
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* in makefile to reflect current version number.
*/
#ifndef VERSION_MINOR
#define VERSION_MINOR 92
#define VERSION_MINOR 93
#endif

#endif /* _VERSION_H_INCLUDED_ */

0 comments on commit 1d72f9c

Please sign in to comment.