diff options
| -rw-r--r-- | docs/source/conf.py | 2 | ||||
| -rw-r--r-- | poetry.lock | 7 | ||||
| -rw-r--r-- | pyproject.toml | 4 | ||||
| -rw-r--r-- | pyvyos/rest.py | 1 |
4 files changed, 6 insertions, 8 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index c644a0d..bfa4675 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = "pyvyos" copyright = "2024, Roberto Berto" author = "Roberto Berto" -release = "0.2.1" +release = "0.3.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/poetry.lock b/poetry.lock index cd92fd7..462f621 100644 --- a/poetry.lock +++ b/poetry.lock @@ -137,14 +137,13 @@ cli = ["click (>=5.0)"] [[package]] name = "requests" -version = "2.32.3" +version = "2.32.4" description = "Python HTTP for Humans." optional = false python-versions = ">=3.8" files = [ - {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, - {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, -] + {file = "requests-2.32.4-py3-none-any.whl", hash = "sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c"}, + {file = "requests-2.32.4.tar.gz", hash = "sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422"},] [package.dependencies] certifi = ">=2017.4.17" diff --git a/pyproject.toml b/pyproject.toml index 6eee47d..bfe74e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pyvyos" -version = "0.2.2" +version = "0.3.0" authors = [ { name="Roberto Berto", email="463349+robertoberto@users.noreply.github.com" }, ] @@ -34,7 +34,7 @@ dev-dependencies = [ name = "pyvyos" description = "Python SDK for interacting with VyOS API" authors = ["Roberto Berto <463349+robertoberto@users.noreply.github.com>"] -version = "0.2.2" +version = "0.3.0" [tool.poetry.dependencies] python = ">=3.8" diff --git a/pyvyos/rest.py b/pyvyos/rest.py index f67d2c2..22b95d5 100644 --- a/pyvyos/rest.py +++ b/pyvyos/rest.py @@ -52,7 +52,6 @@ class RestClient(ABC): port: Porta de acesso verify: Verificar certificados SSL timeout: Timeout de requisição em segundos - max_retries: Número máximo de tentativas de reconexão """ super().__init__() self.hostname = hostname |
