summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Lysoněk <olysonek@redhat.com>2018-11-23 17:18:50 +0100
committerOndřej Lysoněk <olysonek@redhat.com>2018-11-23 18:05:48 +0100
commite8afbda10fba571c816abddcb5c8180afc435bba (patch)
tree378887fdd16aebd042b2fbed995169644cb1e828
parentf22b4116526835691677ff739e9ca814d8a2ec2e (diff)
downloadlm-sensors-git-e8afbda10fba571c816abddcb5c8180afc435bba.tar.gz
3.5.0 releaseV3-5-0
soname was bumped due to commit dcf23676cc264927 which introduced an ABI change. Fixes #29 Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
-rw-r--r--CHANGES2
-rw-r--r--doc/developers/lm_sensors.lsm6
-rw-r--r--doc/libsensors-API.txt2
-rw-r--r--lib/Module.mk4
-rw-r--r--lib/sensors.h2
-rw-r--r--version.h2
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"