From b13ef805de72c688d5bd9355bf4c4fb48c3d4bce Mon Sep 17 00:00:00 2001 From: Maxim Mosin Date: Mon, 6 Mar 2023 15:31:29 +0900 Subject: [PATCH] Up API version in README, Bumpversion --- README.md | 2 +- pyproject.toml | 4 ++-- src/timeweb/__meta.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 146a807..7c8fc34 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ API Timeweb Cloud позволяет вам управлять ресурсам [Документация API](https://timeweb.cloud/api-docs) -[![OpenAPI etag: 63eb93d2-f32ef](https://img.shields.io/badge/OpenAPI%20etag-63eb93d2--f32ef-blue)](https://github.com/LulzLoL231/timeweb-cloud/wiki/) [Как определяется etag?](#etag) +[![OpenAPI etag: 63ff51f3-106a07](https://img.shields.io/badge/OpenAPI%20etag-63ff51f3--106a07-blue)](https://github.com/LulzLoL231/timeweb-cloud/wiki/) [Как определяется etag?](#etag) [![PyPI version](https://badge.fury.io/py/timeweb-cloud.svg)](https://badge.fury.io/py/timeweb-cloud) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/timeweb-cloud)](https://pypi.org/project/timeweb-cloud/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/timeweb-cloud)](https://pypi.org/project/timeweb-cloud/) [![PyPI - License](https://img.shields.io/pypi/l/timeweb-cloud)](https://github.com/LulzLoL231/timeweb-cloud/blob/master/LICENSE) diff --git a/pyproject.toml b/pyproject.toml index 27fc079..9ac773b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "timeweb-cloud" -version = "0.8.0" +version = "0.9.0" description = "Timeweb Cloud API wrapper" authors = ["Maxim Mosin "] license = "MIT" @@ -40,7 +40,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.bumpver] -current_version = "0.8.0" +current_version = "0.9.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "Bump version {old_version} -> {new_version}" commit = false diff --git a/src/timeweb/__meta.py b/src/timeweb/__meta.py index 0907f8c..9bf8061 100644 --- a/src/timeweb/__meta.py +++ b/src/timeweb/__meta.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- '''Timeweb Cloud package metadata''' -__version__ = '0.8.0' +__version__ = '0.9.0' __author__ = 'Maxim Mosin '