Skip to content

Commit

Permalink
upd requests to fix CVE-2023-32681
Browse files Browse the repository at this point in the history
  • Loading branch information
gechandesu committed May 24, 2023
1 parent a43b3a5 commit 4d099c4
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 31 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

В этом файле описаны все значимые изменения в Timeweb Cloud CLI. В выпусках мы придерживается правил [семантического версионирования](https://semver.org/lang/ru/).

# Версия 2.0.2 (2023.05.24)

## Изменено

- Обновлена зависимость `requests` для закрытия уязвимости CVE-2023-32681.

# Версия 2.0.1 (2023.05.19)

## Добавлено
Expand Down
57 changes: 29 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "twc-cli"
version = "2.0.1"
version = "2.0.2"
description = "Timeweb Cloud Command Line Interface."
authors = ["ge <dev@timeweb.cloud>"]
homepage = "https://github.com/timeweb-cloud/twc"
Expand All @@ -12,7 +12,7 @@ packages = [{ include = "twc", from = "." }]

[tool.poetry.dependencies]
python = "^3.7.9"
requests = "^2.28.2"
requests = "^2.31.0"
typer = "^0.7.0"
shellingham = "^1.5.0.post1"
colorama = "^0.4.6"
Expand Down
2 changes: 1 addition & 1 deletion twc/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
import sys


__version__ = "2.0.1"
__version__ = "2.0.2"
__pyversion__ = sys.version.replace("\n", "")

0 comments on commit 4d099c4

Please sign in to comment.