update makefile to read cordova version from version file
diff --git a/Makefile b/Makefile
index 08c6037..c3f238b 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@
 ECHO = echo
 ECHO_N = echo -n
 JAVA = java
-PGVERSION = 2.5.0
+PGVERSION := $(shell cat VERSION)
 UNAME := $(shell uname)
 
 NAME = `$(CAT) framework/appinfo.json | $(GREP) '"id"' | $(CUT) -d \" -f 4`
diff --git a/VERSION b/VERSION
index fad066f..914ec96 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.5.0
\ No newline at end of file
+2.6.0
\ No newline at end of file