From ba845c6793eab868cad957b2763fa121333fdfc1 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 27 Feb 2023 11:50:00 +1100 Subject: [PATCH] Update version to 1.15.0 for release. --- src/wrapt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index bff03660..c5363524 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '15', '0rc1') +__version_info__ = ('1', '15', '0') __version__ = '.'.join(__version_info__) from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,