diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0f87f3df6d4ab94713ea235e64802114b7b38f35_Q0hBTkdFTE9HLnJzdA==..e2724cd4b23b78da545a10c789ea705701015b4c_Q0hBTkdFTE9HLnJzdA== 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,8 +2,8 @@
 ===============
 
 0.13.0 2018-11-12
-------------------
+-----------------
 
 `GitHub milestone <https://github.com/pika/pika/milestone/13>`_
 
 - `AsyncioConnection`, `TornadoConnection` and `TwistedProtocolConnection` are no longer auto-imported (`PR <https://github.com/pika/pika/pull/1129>`_)
@@ -6,7 +6,8 @@
 
 `GitHub milestone <https://github.com/pika/pika/milestone/13>`_
 
 - `AsyncioConnection`, `TornadoConnection` and `TwistedProtocolConnection` are no longer auto-imported (`PR <https://github.com/pika/pika/pull/1129>`_)
+- Python `3.7` support (`Issue <https://github.com/pika/pika/issues/1107>`_)
 
 0.12.0 2018-06-19
 -----------------
diff --git a/docs/version_history.rst b/docs/version_history.rst
index 0f87f3df6d4ab94713ea235e64802114b7b38f35_ZG9jcy92ZXJzaW9uX2hpc3RvcnkucnN0..e2724cd4b23b78da545a10c789ea705701015b4c_ZG9jcy92ZXJzaW9uX2hpc3RvcnkucnN0 100644
--- a/docs/version_history.rst
+++ b/docs/version_history.rst
@@ -1,6 +1,14 @@
 Version History
 ===============
 
+0.13.0 2018-11-12
+-----------------
+
+`GitHub milestone <https://github.com/pika/pika/milestone/13>`_
+
+- `AsyncioConnection`, `TornadoConnection` and `TwistedProtocolConnection` are no longer auto-imported (`PR <https://github.com/pika/pika/pull/1129>`_)
+- Python `3.7` support (`Issue <https://github.com/pika/pika/issues/1107>`_)
+
 0.12.0 2018-06-19
 -----------------
 
@@ -156,10 +164,10 @@
   adapter.
 - Non-backward-compatible changes in `Channel.add_on_return_callback` callback's
   signature.
-- The `AsyncoreConnection` adapter was retired
+- The `AsynchoreConnection` adapter was retired
 
 **Details**
 
 Python 3.x: this release introduces python 3.x support. Tested on Python 3.3
 and 3.4.
 
@@ -160,10 +168,10 @@
 
 **Details**
 
 Python 3.x: this release introduces python 3.x support. Tested on Python 3.3
 and 3.4.
 
-`AsyncoreConnection`: Retired this legacy adapter to reduce maintenance burden;
+`AsynchoreConnection`: Retired this legacy adapter to reduce maintenance burden;
 the recommended replacement is the `SelectConnection` adapter.
 
 `SelectConnection`: ioloop was refactored for compatibility with other ioloops.
@@ -187,7 +195,7 @@
     to process pending I/O, additional callbacks will be suppressed whenever
     `BlockingConnection.process_data_events` and `BlockingConnection.sleep` are
     nested in any combination; in that case, the callback information will be
-    buffered and dispatched once nesting unwinds and control returns to the
+    bufferred and dispatched once nesting unwinds and control returns to the
     level-zero dispatcher.
   - `BlockingConnection.connect`: this method was removed in favor of the
     constructor as the only way to establish connections; this reduces
diff --git a/pika/__init__.py b/pika/__init__.py
index 0f87f3df6d4ab94713ea235e64802114b7b38f35_cGlrYS9fX2luaXRfXy5weQ==..e2724cd4b23b78da545a10c789ea705701015b4c_cGlrYS9fX2luaXRfXy5weQ== 100644
--- a/pika/__init__.py
+++ b/pika/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '0.12.0'
+__version__ = '0.13.0b1'
 
 import logging
 from logging import NullHandler
diff --git a/setup.py b/setup.py
index 0f87f3df6d4ab94713ea235e64802114b7b38f35_c2V0dXAucHk=..e2724cd4b23b78da545a10c789ea705701015b4c_c2V0dXAucHk= 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
 
 setuptools.setup(
     name='pika',
-    version='0.12.0',
+    version='0.13.0b1',
     description='Pika Python AMQP Client Library',
     long_description=open('README.rst').read(),
     maintainer='Gavin M. Roy',
@@ -39,6 +39,7 @@
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: Jython',
         'Programming Language :: Python :: Implementation :: PyPy',