diff --git a/CHANGELOG.md b/CHANGELOG.md index 09bab0bb..cb79fb29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +### v1.1.0 + +[Commit list](https://github.com/intel/ledmon/compare/v1.0.0...v1.1.0) + +Enhancements + +* Various enhancements in tests, licensing and deployment +* Add --default-controller command to ledctl + +Bug fixes + +* ledctl: add error message for missing devices +* ledctl: fix musl build failure by replacing on_exit() by atexit() +* Improve error handling for unsupported patters by falling back to normal +* Fix incorrect conversion of large integer values +* Fix compilation warnings +* Fix incorrect array index usage for block device and SES slot lookup + ### v1.0.0 / 2024-02-28 [Commit list](https://github.com/intel/ledmon/compare/v0.97...v1.0.0) diff --git a/README.md b/README.md index eaed869b..4adbb1ae 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# This package contains the Enclosure LED Utilities, version 1.0.0 +# This package contains the Enclosure LED Utilities, version 1.1.0 Copyright (C) 2009-2024 Intel Corporation. diff --git a/configure.ac b/configure.ac index 85a0bd2a..877e40e0 100644 --- a/configure.ac +++ b/configure.ac @@ -4,12 +4,12 @@ AC_PREREQ([2.69]) m4_define([MAJOR_VERSION], 1) -m4_define([MINOR_VERSION], 0) +m4_define([MINOR_VERSION], 1) m4_define([MICRO_VERSION], 0) AC_INIT([ledmon],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION]) AC_CONFIG_MACRO_DIR([m4]) -AC_SUBST([PACKAGE_DATE], "March 2024") +AC_SUBST([PACKAGE_DATE], "2024") AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) # If CFLAGS was not set, do not set default compiler flags, leave it empty.