From deb40ae71a416ae7cebd911cbda7b02715aa45a3 Mon Sep 17 00:00:00 2001 From: Rinat Sabitov Date: Wed, 29 May 2024 11:54:34 +0200 Subject: [PATCH] Version bump --- docs/source/conf.py | 4 ++-- pycouchdb/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 57cee89..08b00d9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '1.15' +version = '1.16' # The full version, including alpha/beta/rc tags. -release = '1.15' +release = '1.16' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pycouchdb/__init__.py b/pycouchdb/__init__.py index 61f6c04..303a70e 100644 --- a/pycouchdb/__init__.py +++ b/pycouchdb/__init__.py @@ -2,7 +2,7 @@ __author__ = "Andrey Antukh" __license__ = "BSD" -__version__ = "1.15.0" +__version__ = "1.16.0" __maintainer__ = "Rinat Sabitov" __email__ = "rinat.sabitov@gmail.com" __status__ = "Development" diff --git a/pyproject.toml b/pyproject.toml index cd44d92..5b293c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycouchdb" -version = "1.15.0" +version = "1.16.0" description = "Modern pure python CouchDB Client." authors = ["Andrey Antukh "] maintainers = ["Rinat Sabitov "]