changelog and call it 19 now (#807)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 5cfb683..31503cc 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -4,7 +4,7 @@
 Versions are year-based with a strict backward-compatibility policy.
 The third digit is only for regressions.
 
-18.1.0 (UNRELEASED)
+19.0.0 (UNRELEASED)
 -------------------
 
 
@@ -24,7 +24,11 @@
 Changes:
 ^^^^^^^^
 
-*none*
+- pyOpenSSL now works with OpenSSL 1.1.1.
+  `#805 <https://github.com/pyca/pyopenssl/pull/805>`_
+- pyOpenSSL now handles NUL bytes in ``X509Name.get_components()``
+  `#804 <https://github.com/pyca/pyopenssl/pull/804>`_
+
 
 
 ----
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 93630b1..e1a1a63 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -11,7 +11,7 @@
     "__title__", "__uri__", "__version__",
 ]
 
-__version__ = "18.1.0.dev0"
+__version__ = "19.0.0.dev0"
 
 __title__ = "pyOpenSSL"
 __uri__ = "https://pyopenssl.org/"