From e8afbda10fba571c816abddcb5c8180afc435bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Lyson=C4=9Bk?= Date: Fri, 23 Nov 2018 17:18:50 +0100 Subject: 3.5.0 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit soname was bumped due to commit dcf23676cc264927 which introduced an ABI change. Fixes #29 Signed-off-by: Ondřej Lysoněk --- CHANGES | 2 ++ doc/developers/lm_sensors.lsm | 6 +++--- doc/libsensors-API.txt | 2 +- lib/Module.mk | 4 ++-- lib/sensors.h | 2 +- version.h | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index b9db9bcd..eb9dd43a 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,8 @@ lm-sensors CHANGES file ----------------------- git HEAD + +3.5.0 (2018-11-23) Fixed disappearance of certain hwmon chips with 4.19+ kernels Add the find-driver script for debugging Various documentation and man page improvements diff --git a/doc/developers/lm_sensors.lsm b/doc/developers/lm_sensors.lsm index 29103d87..3151091d 100644 --- a/doc/developers/lm_sensors.lsm +++ b/doc/developers/lm_sensors.lsm @@ -1,7 +1,7 @@ Begin4 Title: lm_sensors -Version: 3.4.0 -Entered-date: 2015-06-25 +Version: 3.5.0 +Entered-date: 2018-11-23 Description: Hardware health monitoring package for Linux. It consists of a library to allow applications to read sensors data more easily, and of an example program to pretty print this data. @@ -11,6 +11,6 @@ Keywords: sensors health hardware-monitoring fan-speed Author: jdelvare@suse.de (Jean Delvare) Maintained-by: jdelvare@suse.de (Jean Delvare) Primary-site: https://github.com - /lm-sensors/lm-sensors/archive/V3-4-0/lm-sensors-3-4-0.tar.gz + /lm-sensors/lm-sensors/archive/V3-5-0/lm-sensors-3-5-0.tar.gz Copying-policy: GPL/LGPL End diff --git a/doc/libsensors-API.txt b/doc/libsensors-API.txt index 8f47996a..70b8e6a6 100644 --- a/doc/libsensors-API.txt +++ b/doc/libsensors-API.txt @@ -6,7 +6,7 @@ over time. This document summarizes these evolutions so that application authors can quickly figure out how to test for the availability of a given new feature. -0x4?? lm-sensors 3.?.? +0x500 lm-sensors 3.5.0 * Added support for power min, lcrit, min_alarm and lcrit_alarm enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_MIN enum sensors_subfeature_type SENSORS_SUBFEATURE_POWER_LCRIT diff --git a/lib/Module.mk b/lib/Module.mk index d34b1ed5..77322420 100644 --- a/lib/Module.mk +++ b/lib/Module.mk @@ -32,8 +32,8 @@ LIBMAN5FILES := $(MODULE_DIR)/sensors.conf.5 # The library soname (major number) must be changed if and only if the interface is # changed in a backward incompatible way. The interface is defined by # the public header files - in this case they are error.h and sensors.h. -LIBMAINVER := 4 -LIBMINORVER := 4.0 +LIBMAINVER := 5 +LIBMINORVER := 0.0 LIBVER := $(LIBMAINVER).$(LIBMINORVER) # The static lib name, the shared lib name, and the internal ('so') name of diff --git a/lib/sensors.h b/lib/sensors.h index bbe80dba..94f6f230 100644 --- a/lib/sensors.h +++ b/lib/sensors.h @@ -31,7 +31,7 @@ when the API or ABI breaks), the third digit is incremented to track small API additions like new flags / enum values. The second digit is for tracking larger additions like new methods. */ -#define SENSORS_API_VERSION 0x440 +#define SENSORS_API_VERSION 0x500 #define SENSORS_CHIP_NAME_PREFIX_ANY NULL #define SENSORS_CHIP_NAME_ADDR_ANY (-1) diff --git a/version.h b/version.h index bbdc04d9..0a5211e2 100644 --- a/version.h +++ b/version.h @@ -1 +1 @@ -#define LM_VERSION "3.4.0+git" +#define LM_VERSION "3.5.0" -- cgit v1.2.1