Skip to content

Commit 1f8df76

Browse files
committed
update version
1 parent 40cb28a commit 1f8df76

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.o
2+
parsers/parsers.a
3+
stm32flash
24

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.8 (2024-01-29)
2+
- add GigaDevices support
3+
14
0.7 (2022-03-26)
25

36
- Fix I2C page-by-page erase (Yann Sionneau)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GD32E103TBxx uses same device ID as STM32, but SRAM size, Flash size and page si
1616

1717
~~~sh
1818
./stm32flash -G -b 115200 -S 0x8010000 -w t.txt /dev/ttyUSB0
19-
stm32flash 0.7
19+
stm32flash
2020

2121
http://stm32flash.sourceforge.net/
2222

configure

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for stm32flash 0.7.
3+
# Generated by GNU Autoconf 2.69 for stm32flash.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@ MAKEFLAGS=
587587
# Identity of this package.
588588
PACKAGE_NAME='stm32flash'
589589
PACKAGE_TARNAME='stm32flash'
590-
PACKAGE_VERSION='0.7'
591-
PACKAGE_STRING='stm32flash 0.7'
590+
PACKAGE_VERSION='0.8'
591+
PACKAGE_STRING='stm32flash 0.8'
592592
PACKAGE_BUGREPORT=''
593593
PACKAGE_URL=''
594594

@@ -1327,7 +1327,7 @@ if test "$ac_init_help" = "long"; then
13271327
# Omit some internal or obsolete options to make the list less imposing.
13281328
# This message is too long to be a string in the A/UX 3.1 sh.
13291329
cat <<_ACEOF
1330-
\`configure' configures stm32flash 0.7 to adapt to many kinds of systems.
1330+
\`configure' configures stm32flash to adapt to many kinds of systems.
13311331
13321332
Usage: $0 [OPTION]... [VAR=VALUE]...
13331333
@@ -1398,7 +1398,7 @@ fi
13981398

13991399
if test -n "$ac_init_help"; then
14001400
case $ac_init_help in
1401-
short | recursive ) echo "Configuration of stm32flash 0.7:";;
1401+
short | recursive ) echo "Configuration of stm32flash:";;
14021402
esac
14031403
cat <<\_ACEOF
14041404
@@ -1510,7 +1510,7 @@ fi
15101510
test -n "$ac_init_help" && exit $ac_status
15111511
if $ac_init_version; then
15121512
cat <<\_ACEOF
1513-
stm32flash configure 0.7
1513+
stm32flash configure
15141514
generated by GNU Autoconf 2.69
15151515
15161516
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1788,7 +1788,7 @@ cat >config.log <<_ACEOF
17881788
This file contains any messages produced by compilers while
17891789
running configure, to aid debugging if configure makes a mistake.
17901790
1791-
It was created by stm32flash $as_me 0.7, which was
1791+
It was created by stm32flash $as_me, which was
17921792
generated by GNU Autoconf 2.69. Invocation command line was
17931793
17941794
$ $0 $@
@@ -12764,7 +12764,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1276412764
# report actual input values of CONFIG_FILES etc. instead of their
1276512765
# values after options handling.
1276612766
ac_log="
12767-
This file was extended by stm32flash $as_me 0.7, which was
12767+
This file was extended by stm32flash $as_me, which was
1276812768
generated by GNU Autoconf 2.69. Invocation command line was
1276912769
1277012770
CONFIG_FILES = $CONFIG_FILES
@@ -12821,7 +12821,7 @@ _ACEOF
1282112821
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1282212822
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1282312823
ac_cs_version="\\
12824-
stm32flash config.status 0.7
12824+
stm32flash config.status
1282512825
configured by $0, generated by GNU Autoconf 2.69,
1282612826
with options \\"\$ac_cs_config\\"
1282712827

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.68])
5-
AC_INIT([stm32flash], [0.7], [])
5+
AC_INIT([stm32flash], [0.8], [])
66

77
# Checks for programs.
88
AM_INIT_AUTOMAKE([foreign -Wall])

main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#include <windows.h>
4646
#endif
4747

48-
#define VERSION "0.7-ddmesh"
48+
#define VERSION "0.8-ddmesh"
4949

5050
/* device globals */
5151
stm32_t *stm = NULL;
@@ -244,7 +244,7 @@ int main(int argc, char* argv[]) {
244244
parser_err_t perr;
245245
diag = stdout;
246246

247-
fprintf(diag, "stm32flash " VERSION "(modified version add GigaDevice Support)\n\n");
247+
fprintf(diag, "stm32flash " VERSION " (modified version, adds GigaDevice Support)\n\n");
248248
fprintf(diag, "http://stm32flash.sourceforge.net/\n\n");
249249

250250
if (parse_options(argc, argv) != 0)

0 commit comments

Comments
 (0)