From 4cddea94ee0183118a023a3c7d2e71b2628d990d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Marafioti?= Date: Wed, 5 Jun 2024 12:11:34 +0200 Subject: [PATCH] Update __version__ There was a new release of the python client with version upped to 0.7.0 on pip and on the pyproject.toml, but it wasn't changed on the __init__.py so when one does: import text_generation print(text_generation.__version__) It still outputs "0.6.0" --- clients/python/text_generation/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/text_generation/__init__.py b/clients/python/text_generation/__init__.py index a8e67071..d7a09c9e 100644 --- a/clients/python/text_generation/__init__.py +++ b/clients/python/text_generation/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.6.0" +__version__ = "0.7.0" DEPRECATION_WARNING = ( "`text_generation` clients are deprecated and will be removed in the near future. "