Bump the version to 2.1.3
diff --git a/changelog.rst b/changelog.rst
index 39e50ff..d51295b 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -3,10 +3,17 @@
 Changelog
 ---------
 
+2.1.3
+~~~~~
+
+2021-0x-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.1.2...master>`__
+
+- Thanks to our beloved contributors: @
+
 2.1.2
 ~~~~~
 
-2021-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.1.2...v2.1.1>`__
+2021-05-19 • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.1.1...v2.1.2>`__
 
 - [mac] Fix relative path handling for non-recursive watch. (`#797 <https://github.com/gorakhargosh/watchdog/pull/797>`_)
 - [windows] On PyPy, events happening right after ``start()`` were missed. Add a workaround for that. (`#796 <https://github.com/gorakhargosh/watchdog/pull/796>`_)
diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc
index f660052..8c80979 100644
--- a/docs/source/global.rst.inc
+++ b/docs/source/global.rst.inc
@@ -4,7 +4,7 @@
 .. |author_email| replace:: yesudeep@gmail.com
 .. |copyright| replace:: Copyright 2012 Google, Inc & contributors.
 .. |project_name| replace:: ``watchdog``
-.. |project_version| replace:: 2.1.2
+.. |project_version| replace:: 2.1.3
 
 .. _issue tracker: https://github.com/gorakhargosh/watchdog/issues
 .. _code repository: https://github.com/gorakhargosh/watchdog
diff --git a/src/watchdog/version.py b/src/watchdog/version.py
index f87b21c..2e83ab2 100644
--- a/src/watchdog/version.py
+++ b/src/watchdog/version.py
@@ -20,7 +20,7 @@
 # ``docs/source/global.rst.inc`` file as well.
 VERSION_MAJOR = 2
 VERSION_MINOR = 1
-VERSION_BUILD = 2
+VERSION_BUILD = 3
 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
 VERSION_STRING = "%d.%d.%d" % VERSION_INFO