From 4d14a5164cbf6e8adcde0fc8dd0945a6bf7ff4c2 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Wed, 15 Mar 2023 09:39:57 -0500 Subject: [PATCH] Prep for v0.5.4 release --- docs/src/whatsnew.rst | 4 ++++ setup.cfg | 2 +- singlestoredb/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/src/whatsnew.rst b/docs/src/whatsnew.rst index f775472c..530e3628 100644 --- a/docs/src/whatsnew.rst +++ b/docs/src/whatsnew.rst @@ -8,6 +8,10 @@ This document outlines features and improvements from each release. are for non-production testing and evaluation, and may include changes to the API. +v0.5.4 - March 15, 2023 +----------------------- +* Added expiration to workspaces + v0.5.3 - January 9, 2023 -------------------------- * Fixed issue with parsing numeric results diff --git a/setup.cfg b/setup.cfg index d2402316..c0315738 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = singlestoredb -version = 0.5.3 +version = 0.5.4 description = Interface to the SingleStore database and cluster management APIs long_description = file: README.md long_description_content_type = text/markdown diff --git a/singlestoredb/__init__.py b/singlestoredb/__init__.py index 6130a16a..df909af2 100644 --- a/singlestoredb/__init__.py +++ b/singlestoredb/__init__.py @@ -13,7 +13,7 @@ """ -__version__ = '0.5.3' +__version__ = '0.5.4' from .config import options, get_option, set_option, describe_option from .connection import connect, apilevel, threadsafety, paramstyle