[py] update CHANGELOG and versions for 3.14.1

Cr-Mirrored-From: https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium
Cr-Mirrored-Commit: c513b18b7acdf7d1793fd2dce5f656157063ad7c
diff --git a/CHANGES b/CHANGES
index 7431180..a7e34ab 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,21 @@
+Selenium 3.14.1
+* Fix ability to set timeout for urllib3 (#6286)
+* get_cookie uses w3c endpoint when compliant
+* Remove body from GET requests (#6250)
+* Fix actions pause for fraction of a second (#6300)
+* Fixed input pausing for some actions methods
+* Capabilities can be set on Options classes
+* WebElement rect method is now forward compatible for OSS endpoints (#6355)
+* Deprecation warnings now have a stacklevel of 2
+* keep_alive can now be set on Webdriver init (#6316)
+* isDisplayed atom is now used for all w3c compliant browser, fixing issue with Safari 12
+
 Selenium 3.14.0
 * Fix doc of URL-related ExpectedCondition (#6236)
 * Added ExpectedCondition invisibility_of_element
 * Swap out httplib for urllib3
 * Be consistent with webdriver init kwarg service_log_path (#5725)
 
-
 Selenium 3.13.0
 
 * Add executing Chrome devtools command (#5989)
diff --git a/selenium/__init__.py b/selenium/__init__.py
index d333476..5f6bd30 100644
--- a/selenium/__init__.py
+++ b/selenium/__init__.py
@@ -16,4 +16,4 @@
 # under the License.
 
 
-__version__ = "3.14.0"
+__version__ = "3.14.1"
diff --git a/selenium/webdriver/__init__.py b/selenium/webdriver/__init__.py
index 0337dcb..86d964b 100644
--- a/selenium/webdriver/__init__.py
+++ b/selenium/webdriver/__init__.py
@@ -36,4 +36,4 @@
 from .common.touch_actions import TouchActions  # noqa
 from .common.proxy import Proxy  # noqa
 
-__version__ = '3.14.0'
+__version__ = '3.14.1'
diff --git a/setup.py b/setup.py
index d6bc1cc..b00cc85 100755
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 setup_args = {
     'cmdclass': {'install': install},
     'name': 'selenium',
-    'version': "3.14.0",
+    'version': "3.14.1",
     'license': 'Apache 2.0',
     'description': 'Python bindings for Selenium',
     'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),