diff --git a/docs/changelog.rst b/docs/changelog.rst index 78df24b..ea4b13c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,19 @@ Changelog =========== +.. _v1_10: + +1.10 (2019-08-23) +----------------- + +Ability to introspect and run queries against views (`#54 `__) + +- ``db.views_names()`` method and and ``db.views`` property +- Separate ``View`` and ``Table`` classes, both subclassing new ``Queryable`` class +- ``view.drop()`` method + +See :ref:`python_api_views`. + .. _v1_9: 1.9 (2019-08-04) diff --git a/setup.py b/setup.py index bb42bdf..9d0a9a6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "1.9" +VERSION = "1.10" def get_long_description():