From a0db824bfc7edc38261dc12625ac13e2cd60c122 Mon Sep 17 00:00:00 2001 From: Dave Brondsema Date: Thu, 16 Mar 2023 13:51:14 -0400 Subject: [PATCH] version 0.13.0 --- docs/news.rst | 6 ++++++ ming/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/news.rst b/docs/news.rst index 870ec15..36a7048 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -3,6 +3,12 @@ Ming News / Release Notes The latest releases support PyMongo 3. The older 0.5.x releases support PyMongo 2 and Python 2. +0.13.0 (Mar 16, 2023) +--------------------- +* remove Python 3.6 support +* set all DeprecationWarning's stacklevel=2 to show caller +* MIM: verify kwargs in find/find_one + 0.12.2 (Nov 15, 2022) --------------------- * MIM: add support for UUID types diff --git a/ming/version.py b/ming/version.py index c7460f3..e181297 100644 --- a/ming/version.py +++ b/ming/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '12', '2') +__version_info__ = ('0', '13', '0') __version__ = '.'.join(__version_info__)