diff --git a/docs/changelog.rst b/docs/changelog.rst index 19298ad..43cfcc5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog =========== +.. _v2_7: + +2.7 (2020-04-17) +---------------- + +- New ``columns=`` argument for the ``.insert()``, ``.insert_all()``, ``.upsert()`` and ``.upsert_all()`` methods, for over-riding the auto-detected types for columns and specifying additional columns that should be added when the table is created. See :ref:`python_api_custom_columns`. (`#100 `__) + .. _v2_6: 2.6 (2020-04-15) diff --git a/setup.py b/setup.py index af6f637..90ccde8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "2.6" +VERSION = "2.7" def get_long_description():