diff --git a/ChangeLog b/ChangeLog index 67e436b..1fc68a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Version 0.24 - 14 May 2016 + * Various bug fixes. + * Persistent history and tab completion with libreadline. + * Address expressions now support register names. + * Add support for new 64-bit TI library API. + Version 0.23 - 2 Mar 2015 * Support for raw JTAG via GPIOs. * Raw JTAG drivers now support single stepping and breakpoints. diff --git a/mspdebug.man b/mspdebug.man index fe5f399..2dbc909 100644 --- a/mspdebug.man +++ b/mspdebug.man @@ -1,4 +1,4 @@ -.TH mspdebug 1 "2 Mar 2015" "Version 0.23" +.TH mspdebug 1 "14 May 2016" "Version 0.24" .SH NAME MSPDebug - debugging tool for MSP430 MCUs .SH SYNOPSIS diff --git a/ui/main.c b/ui/main.c index b099ee4..a0e5085 100644 --- a/ui/main.c +++ b/ui/main.c @@ -1,5 +1,5 @@ /* MSPDebug - debugging tool for MSP430 MCUs - * Copyright (C) 2009-2015 Daniel Beer + * Copyright (C) 2009-2016 Daniel Beer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -94,8 +94,8 @@ static const struct device_class *const driver_table[] = { }; static const char *version_text = -"MSPDebug version 0.23 - debugging tool for MSP430 MCUs\n" -"Copyright (C) 2009-2015 Daniel Beer \n" +"MSPDebug version 0.24 - debugging tool for MSP430 MCUs\n" +"Copyright (C) 2009-2016 Daniel Beer \n" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR " "PURPOSE.\n";