diff --git a/CHANGES b/CHANGES index aaf6b5f..34c4c05 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,23 @@ +v1.7.2 + + * Clean up input handling, removing unnecessary caching + of input, which should speed up things. + * Add the missing ud_insn_mnemonic api function. + * Rename ud_opr_isgpr to ud_opr_is_gpr. + * Fix decoding of relative jumps. + * Fix build with automake-1.14 + * Minor fix to AT&T syntax (missing "$" prefix for immedaites) + * Add a new api checker (tests/libcheck.c). + * Add a standalone script for diff-testing (tests/difftest.sh) + * Refinements to the documentation. + + Acknowledgements: + + Brendan Long (https://github.com/brendanlong) + radare (https://github.com/radare) + Sergey Basalaev (https://github.com/SBasalaev) + ebfe (https://github.com/ebfe) + v1.7.1 * Full support for SSSE3, SSE4.1, SSE4.2, SMX, AES. diff --git a/configure.ac b/configure.ac index 3837d6a..9cdadf2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # udis86 autoconf # AC_PREREQ(2.59) -AC_INIT([udis86], [1.7.2-pre], [vivek.mt@gmail.com]) +AC_INIT([udis86], [1.7.2], [vivek.mt@gmail.com]) AC_CONFIG_HEADERS(config.h) AC_CONFIG_AUX_DIR(build) AC_CONFIG_MACRO_DIR([build/m4])