From 2ba845ac5c8023447ddf6f3adb238a454d0585c3 Mon Sep 17 00:00:00 2001 From: corka149 Date: Sun, 15 Dec 2024 22:01:29 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 4 ++-- pyproject.toml | 4 ++-- python/portforward/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e3b7a50..d876b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portforward" -version = "0.7.0" +version = "0.7.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -28,7 +28,7 @@ log = "0.4.17" env_logger = "0.10.0" # tokio tokio = { version = "1.27.0", features = ["full"] } -tokio-util = "0.7.0" +tokio-util = "0.7.1" tokio-stream = { version = "0.1.9", features = ["net"] } # k8s kube = { version = "^0.81.0", default-features = false, features = ["admission"] } diff --git a/pyproject.toml b/pyproject.toml index dabc9ef..a41f210 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "portforward" -version = "0.7.0" +version = "0.7.1" authors = [{ name = "Sebastian Ziemann", email = "corka149@mailbox.org" }] description = "Easy Kubernetes Port-Forward For Python" readme = "README.rst" @@ -34,7 +34,7 @@ module-name = "portforward._portforward" python-source = "python" [tool.bumpversion] -current_version = "0.7.0" +current_version = "0.7.1" tag = true commit = true diff --git a/python/portforward/__init__.py b/python/portforward/__init__.py index 8d1d60a..8ebe8ee 100644 --- a/python/portforward/__init__.py +++ b/python/portforward/__init__.py @@ -2,7 +2,7 @@ Easy Kubernetes Port-Forward For Python """ -__version__ = "0.7.0" +__version__ = "0.7.1" import asyncio import contextlib