diff --git a/docs/changelog.rst b/docs/changelog.rst index 0c31e79..57bff4a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog =========== +.. _v3_12: + +3.12 (2021-06-25) +----------------- + +- New :ref:`db.query(sql, params) ` method, which executes a SQL query and returns the results as an iterator over Python dictionaries. (`#290 `__) +- This project now uses ``flake8`` and has started to use ``mypy``. (`#291 `__) +- New documentation on :ref:`contributing ` to this project. (`#292 `__) + .. _v3_11: 3.11 (2021-06-20) diff --git a/setup.py b/setup.py index f5421ec..02224b3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.11" +VERSION = "3.12" def get_long_description():