summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-01-25 09:44:30 +1100
committer Vas Crabb <vas@vastheman.com>2017-01-25 09:44:30 +1100
commit22c42abfdf438781183c9a18486a38fe35946305 (patch)
treefd043def8dacd465ad928e31a6d2b0e5938e236e
parente994eee7eb31c976dccce17c644e6b28a91ad0a0 (diff)
version bump (nw)mame0182
-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 e438149550c..13ddaa65946 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="181"
- android:versionName="0.181"
+ android:versionCode="182"
+ android:versionName="0.182"
android:installLocation="auto">
<!-- Android 5.0 -->
diff --git a/makefile b/makefile
index 0b4d5a77d0f..dd8e4fc7e03 100644
--- a/makefile
+++ b/makefile
@@ -1541,14 +1541,14 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS)
- @echo '#define BARE_BUILD_VERSION "0.181"' > $@
+ @echo '#define BARE_BUILD_VERSION "0.182"' > $@
@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.181" > $@
+ @echo #define BARE_BUILD_VERSION "0.182" > $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char build_version[]; >> $@
@echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@