summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-09-02 21:35:00 +1000
committer Vas Crabb <vas@vastheman.com>2019-09-02 21:35:00 +1000
commitf7172322a2e5392b2543efd0ef91cf1f53402683 (patch)
tree7eef33f19bc2e9ef90d0669a554efb62c98c96d2
parent4ebd9f8337633ca03622c897183efe4b8808a334 (diff)
version bump (nw)mame0213
-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 372a7660567..5c7239dfbcc 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="212"
- android:versionName="0.212"
+ android:versionCode="213"
+ android:versionName="0.213"
android:installLocation="auto">
<!-- OpenGL ES 2.0 -->
diff --git a/makefile b/makefile
index 464572331c7..9166b1423be 100644
--- a/makefile
+++ b/makefile
@@ -1645,14 +1645,14 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS)
- @echo '#define BARE_BUILD_VERSION "0.212"' > $@
+ @echo '#define BARE_BUILD_VERSION "0.213"' > $@
@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: $(GENDIR)/git_desc
- @echo #define BARE_BUILD_VERSION "0.212" > $@
+ @echo #define BARE_BUILD_VERSION "0.213" > $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char build_version[]; >> $@
@echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@