amlvideosink: CB2 update module version to 1.2.13 [1/1]

PD#SWPL-129805

Problem:
update module version to 1.2.13, commit id bcd880e826

Solution:
update module version to 1.2.13, commit id bcd880e826

Verify:
ap222

Change-Id: I3472da401c9703e9cf5bc5caa5a7b244dbe6a4fc
Signed-off-by: fei.deng <fei.deng@amlogic.com>
diff --git a/VERSION b/VERSION
index e8b2647..2ecc169 100755
--- a/VERSION
+++ b/VERSION
@@ -1,8 +1,16 @@
 Major_V=1
-Minor_V=2
-BaseChangeId=I175507df652863ac34584a045f0a4cc7881d9d66
+Minor_V=3
+BaseChangeId=I9f9c96d7cf21ca0cf354ebaa145b8ae9e04c1acc
 
-#history version
+#V1.2.13 Release Notes
+#Release_ChangeId_V1_2=I9f9c96d7cf21ca0cf354ebaa145b8ae9e04c1acc
+#removes amlasink dependency
+#destroy eos detect thread
+#refine eos
+#set the fence to control the speed of sending buffer
+#add output index for renderlib
+#reduce buf num
+
 #V1.1.64 Release Notes
 #Release_ChangeId_V1_1=Id02a20ec4f6374a64ee7fa0576b97e9eb8e66bed
 #handle custom sticky event
diff --git a/src/aml_version.h b/src/aml_version.h
index 4dce9dd..e42e7ea 100644
--- a/src/aml_version.h
+++ b/src/aml_version.h
@@ -6,7 +6,7 @@
 #endif
 
 const char libVersion[]=
-"MM-module-name:gst-plugin-video-sink,version:1.0.1-r34-gfe3d6de";
+"MM-module-name:gst-plugin-video-sink,version:1.2.13-gbcd880e";
 
 const char libFeatures[]=
 "MM-module-feature: set video full screen \n" \
@@ -14,7 +14,8 @@
 "MM-module-feature: set av sync mode \n" \
 "MM-module-feature: set window size rectangle \n" \
 "MM-module-feature: set video as pip \n" \
-"MM-module-feature: support render lib for a/v sync and display\n";
+"MM-module-feature: support render lib for a/v sync and display\n"
+"MM-module-feature: set the fence to control the speed of sending buffer\n";
 
 #ifdef  __cplusplus
 }
diff --git a/version_config.sh b/version_config.sh
index c052306..87a2fe0 100755
--- a/version_config.sh
+++ b/version_config.sh
@@ -8,14 +8,17 @@
 #major version
 MAJORVERSION=1
 
-#minor version
-MINORVERSION=2
+#current minor version,if release a new version,please update it
+MINORVERSION=3
+
+#last release version commit id,please store commit id here every release version
+RELEASE_COMMIT_ID=bcd880e8
 
 #modue name/
 MODULE_NAME=MM-module-name:gst-plugin-video-sink
 
-#get all commit count
-COMMIT_COUNT=$(git rev-list HEAD --count)
+#get all commit count from last release version
+COMMIT_COUNT=$(git rev-list $RELEASE_COMMIT_ID..HEAD --count)
 echo commit count $COMMIT_COUNT
 
 #get current commit id
@@ -28,6 +31,7 @@
 
 #version rule string
 VERSION_STRING=${MAJORVERSION}.${MINORVERSION}.${COMMIT_COUNT}-g${COMMIT_ID}
+echo version: $VERSION_STRING
 
 #update the original version
 if [ ${MODULE_NAME_LINE} -gt 0 ]; then