Merge pull request #5 from boyuanzz/drop_rc_tag

Drop RC tag to simplify uploading artifacts to PyPi
diff --git a/.travis.yml b/.travis.yml
index 67327b1..9d779c8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,9 +57,6 @@
 
 after_success:
     - ls -lh ${TRAVIS_BUILD_DIR}/wheelhouse/
-    - |
-      for artifact in ${TRAVIS_BUILD_DIR}/wheelhouse/*.*; do
-          mv $artifact ${artifact/$VERSION/$VERSION.$RC};
-      done
+
     - source deploy_travis.sh
     - deploy
diff --git a/README.md b/README.md
index 7d84125..8a67945 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@
 
 * In travis build console > More options > Settings > Environment Variables:
 
-  * Add `RC` and `VERSION` with 'Display value in build log' enabled (e.g. RC=rc1, VERSION=2.6.0).
+  * Add `VERSION` with 'Display value in build log' enabled (e.g.VERSION=2.6.0).
   * Add `APACHE_USERNAME` and `APACHE_SECRET` with 'Display value in build log' disabled(which encrypt your credential).
   
     __NOTE__: If you have special characters in your credential, please escape them following the [guide](https://docs.travis-ci.com/user/encryption-keys/#note-on-escaping-certain-symbols) properly.