Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivknv committed Jan 3, 2024
1 parent ad2fb82 commit b03b4c2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Changelog
.. _Session Interface: https://yadisk.readthedocs.io/en/latest/api_reference/session_interface.html
.. _requests: https://pypi.org/project/requests

* **Release 2.0.1 (2024-01-02)**
* **Release 2.1.0 (2024-01-03)**

* Fixed a bug where POST request parameters were not encoded correctly
* Fixed a bug in :code:`PycURLSession.send_request()` that made it ignore passed headers
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ YaDisk - это библиотека-клиент REST API Яндекс.Диск
.. _Интерфейс Session: https://yadisk.readthedocs.io/ru/latest/api_reference/session_interface.html
.. _requests: https://pypi.org/project/requests

* **Release 2.0.1 (2024-01-02)**
* **Release 2.1.0 (2024-01-03)**

* Исправлен баг, из-за которого параметры в теле POST-запроса неправильно кодировались
* Исправлен баг в :code:`PycURLSession.send_request()`, из-за которого
Expand Down
2 changes: 1 addition & 1 deletion README.ru.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ YaDisk - это библиотека-клиент REST API Яндекс.Диск
.. _Интерфейс Session: https://yadisk.readthedocs.io/ru/latest/api_reference/session_interface.html
.. _requests: https://pypi.org/project/requests

* **Release 2.0.1 (2024-01-02)**
* **Release 2.1.0 (2024-01-03)**

* Исправлен баг, из-за которого параметры в теле POST-запроса неправильно кодировались
* Исправлен баг в :code:`PycURLSession.send_request()`, из-за которого
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Changelog
.. _PR #31: https://github.com/ivknv/yadisk/pull/31
.. _requests: https://pypi.org/project/requests

* **Release 2.0.1 (2024-01-02)**
* **Release 2.1.0 (2024-01-03)**

* Fixed a bug where POST request parameters were not encoded correctly
* Fixed a bug in :code:`PycURLSession.send_request()` that made it ignore passed headers
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
# built documents.
#
# The short X.Y version.
version = '2.0.1'
version = '2.1.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.1'
release = '2.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="yadisk",
version="2.0.1",
version="2.1.0",
packages=find_packages(exclude=("tests",)),
description="Библиотека-клиент REST API Яндекс.Диска / Yandex.Disk REST API client library",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion yadisk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .async_session import AsyncSession, AsyncResponse
from .import_session import import_session, import_async_session

__version__ = "2.0.1"
__version__ = "2.1.0"

YaDisk = Client
AsyncYaDisk = AsyncClient
Expand Down

0 comments on commit b03b4c2

Please sign in to comment.