diff options
author | 2020-11-23 03:33:30 +1100 | |
---|---|---|
committer | 2020-11-23 03:33:30 +1100 | |
commit | 2d16d31fa5e8d4cf1a8d48c6374e3dc9c79c7846 (patch) | |
tree | 468c544391a4a1fb1a7de96d5834bb6f40ed0511 | |
parent | d740d36061f258547d324540719b90e35ea78d94 (diff) |
**version bump
-rw-r--r-- | makefile | 4 | ||||
-rw-r--r-- | scripts/build/verinfo.py | 3 | ||||
-rw-r--r-- | src/hbmame/hbmame.lst | 2 | ||||
-rw-r--r-- | src/version.cpp | 2 |
4 files changed, 6 insertions, 5 deletions
@@ -1719,14 +1719,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.226"' > $@ + @echo '#define BARE_BUILD_VERSION "0.226.A"' > $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char build_version[];' >> $@ @echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@ @echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@ else $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo #define BARE_BUILD_VERSION "0.226" > $@ + @echo #define BARE_BUILD_VERSION "0.226.A" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ diff --git a/scripts/build/verinfo.py b/scripts/build/verinfo.py index 2f95cb5ce5e..c69a4c272cd 100644 --- a/scripts/build/verinfo.py +++ b/scripts/build/verinfo.py @@ -58,7 +58,8 @@ def extract_version(input): match = pattern.search(line) if match: return match.group(1), match.group(2), match.group(3) - return None, None, None + return '0.226.A','0','226' +## return None, None, None build, outfmt, srcfile, dstfile = parse_args() diff --git a/src/hbmame/hbmame.lst b/src/hbmame/hbmame.lst index 98e7060d8c6..9a7b87763a9 100644 --- a/src/hbmame/hbmame.lst +++ b/src/hbmame/hbmame.lst @@ -555,7 +555,7 @@ tk2h153 tk2h154 tk2h155 tk2h156 -//tk2h157 +//tk2h157 // roms not decided? tk2h158 tk2h159 tk2h160 diff --git a/src/version.cpp b/src/version.cpp index 0ff4320c025..65d5c346c9a 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -8,7 +8,7 @@ ***************************************************************************/ -#define BARE_BUILD_VERSION "0.226" +#define BARE_BUILD_VERSION "0.226.A" extern const char bare_build_version[]; extern const char build_version[]; |