diff --git a/.travis.yml b/.travis.yml
index a6fc5f46dca3829dcc783b3d88ab77648eb916ff..1c90cea60547bf8e2f375e7a7f0d43acc3c97764 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,16 @@
 ---
 language: python
-python: ["2.7", "3.3", "3.4", "3.5"]
+python: ["2.7", "3.2", "3.3", "3.4", "3.5"]
 dist: trusty
 sudo: false
 cache:
   - pip
+matrix:
+  allow_failure:
+    - python: "3.2"
 
 install:
-    - pip install tox-travis
+  - pip install tox-travis
 
 script:
   - tox
diff --git a/README.rst b/README.rst
index d2b289b7ba4aa869664de7e60b4a21d5ecbb54ab..53af308f5b1084483f358efccb7819b700fade56 100644
--- a/README.rst
+++ b/README.rst
@@ -53,15 +53,16 @@ Example usage can be seen in :code:`tests.sh`.
 Testing
 -------
 
-Local tests require both a Python 2, Python 3 and Tox installed and can be run
-by running :code:`tox`. Alternatively, Travis CI is used to test on multiple
-versions of Python for every push.
+Tests require Python 2.7, Python 3.2 or later and Tox and are run by running
+:code:`tox`. Also, Travis CI is used to test on multiple Python versions for
+every push.
 
 Release
 -------
 
-Currently releases are done locally by running :code:`tox -e release` and
-require Python and Tox installed. Releases with Travis CI are coming.
+Releases require Python 2.7 or Python 3.2 or later and Tox. To release a new
+version bump the version in the :code:`VERSION` file and run :code:`tox -e
+release`.
 
 License
 -------
@@ -80,7 +81,11 @@ at: https://www.shore.co.il/git/.
 TODO
 ----
 
+- Add unit tests of filters using doctest.
 - Fix combining dictionaries test.
 - Fix Travis CI test on Python 3.2 (https://travis-ci.org/adarnimrod/template/jobs/187388235).
-- Release on tagged commits to PyPI in Travis CI.
-- TOML support?
+- Release on tagged commits to PyPI in Travis CI
+  (https://docs.travis-ci.com/user/deployment/pypi/ and
+  https://docs.travis-ci.com/user/encryption-keys/).
+- Add JMESPath support.
+- Add TOML support?
diff --git a/tox.ini b/tox.ini
index 1ac57a887f6c612dbaf002ad645ccde42423948f..719a30a718fdc97aa0bcfb6d9ec7e9bfb9820fa7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -31,6 +31,6 @@ deps =
     twine
     wheel
 commands =
-    sh -c 'git tag -f "$(cat VERSION)"'
+    sh -c 'git tag "$(cat VERSION)" && git push --tags'
     python setup.py bdist_wheel
     twine upload --skip-existing dist/*.whl