Changeset 820
- Timestamp:
- 06/18/00 18:45:12 (9 years ago)
- Files:
-
- lm-sensors/trunk/doc/developers/checklist (modified) (1 diff)
- lm-sensors/trunk/lib/Module.mk (modified) (1 diff)
- lm-sensors/trunk/prog/sensors/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/doc/developers/checklist
r656 r820 5 5 - check out i2c and lm_sensors2 6 6 - Update, if necessary, the version number of `sensors' 7 (edit prog/sensors/sensors.c and change the VERSION define) 7 (edit prog/sensors/main.c and change the VERSION define) 8 `cvs diff -r Vx-y-z prog/sensors' is your friend. 8 9 - Update if necessary, the version number of libsensors 9 10 (edit lib/Module.mk and change LIBMAINVER and/or LIBMINORVER) 10 11 Remember: update main number when interface changes, minor if new 11 12 functionality is added, and patch if only bugs are fixed. 13 `cvs diff -r Vx-y-z lib' is your friend. 12 14 - Update CHANGES 13 15 - Update lm_sensors.lsm and send it to the LSM by mailing it to lm-sensors/trunk/lib/Module.mk
r676 r820 30 30 # The main and minor version of the library 31 31 LIBMAINVER := 1 32 LIBMINORVER := 0.032 LIBMINORVER := 1.0 33 33 LIBVER := $(LIBMAINVER).$(LIBMINORVER) 34 34 lm-sensors/trunk/prog/sensors/main.c
r804 r820 29 29 30 30 #define PROGRAM "sensors" 31 #define VERSION "1. 0"31 #define VERSION "1.1" 32 32 #define DEFAULT_CONFIG_FILE_NAME "sensors.conf" 33 33
