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"
This commit is contained in:
Andrés Marafioti 2024-06-05 12:11:34 +02:00 committed by GitHub
parent 9ffe1f1e67
commit 4cddea94ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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. "