From f58f7464243f75367da2ad3cab240246e6e2e618 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 17 Apr 2020 17:04:50 -0700 Subject: [PATCH] Release 2.7 - refs #100 --- docs/changelog.rst | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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():