Set version to 4.4
diff --git a/CHANGES b/CHANGES index cb393c6..a9b1c50 100644 --- a/CHANGES +++ b/CHANGES
@@ -1,6 +1,21 @@ i2c-tools CHANGES ----------------- +4.4 (2024-10-10) + tools: Use getopt + Implement and document option -h + eeprog: Use force option when data comes from a pipe + i2cdetect: Display more functionality bits with option -F + i2cdump: Remove support for SMBus block mode + i2cget: Document SMBus block mode + Fix the return code of option -h + i2cset: Fix the return code of option -h + i2ctransfer: Sort command line options and add to help text + Add an option to print binary data + Drop redundant variable arg_idx + py-smbus: Install in the defined prefix + Use setuptools instead of distutils + 4.3 (2021-07-22) decode-dimms: Attempt to decode LPDDR3 modules eeprom, eepromer: Removed the tools in favor of eeprog
diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms index 92f41e8..32e840a 100755 --- a/eeprom/decode-dimms +++ b/eeprom/decode-dimms
@@ -45,7 +45,7 @@ use constant LITTLEENDIAN => "little-endian"; use constant BIGENDIAN => "big-endian"; -use constant I2C_TOOLS_VER => "4.3"; +use constant I2C_TOOLS_VER => "4.4"; @vendors = ( ["AMD", "AMI", "Fairchild", "Fujitsu",
diff --git a/version.h b/version.h index 933bc2a..d7898b5 100644 --- a/version.h +++ b/version.h
@@ -1 +1 @@ -#define VERSION "4.3+git" +#define VERSION "4.4"