summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-01-26 15:43:24 +1100
committer Vas Crabb <vas@vastheman.com>2021-01-26 15:43:24 +1100
commit140f44693319b3b8842c76584822bd63eb36ce1c (patch)
tree508f26f45cfdc58719f3fe6a8d5b0431e1745f2e
parent0c5e9a05600f1628495ca43832bddc02053bb928 (diff)
Version bumpmame0228
-rw-r--r--android-project/app/src/main/AndroidManifest.xml4
-rw-r--r--makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml
index d23fa226f49..52aac8fe83e 100644
--- a/android-project/app/src/main/AndroidManifest.xml
+++ b/android-project/app/src/main/AndroidManifest.xml
@@ -4,8 +4,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mamedev.mame"
- android:versionCode="227"
- android:versionName="0.227"
+ android:versionCode="228"
+ android:versionName="0.228"
android:installLocation="auto">
<!-- OpenGL ES 2.0 -->
diff --git a/makefile b/makefile
index 96de8f7e69f..e180285ae1a 100644
--- a/makefile
+++ b/makefile
@@ -1743,14 +1743,14 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
- @echo '#define BARE_BUILD_VERSION "0.227"' > $@
+ @echo '#define BARE_BUILD_VERSION "0.228"' > $@
@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.227" > $@
+ @echo #define BARE_BUILD_VERSION "0.228" > $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char build_version[]; >> $@
@echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@