Skip to content

Commit

Permalink
Bump version: 0.7.0 → 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
corka149 committed Dec 15, 2024
1 parent b5cbfb6 commit 2ba845a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion python/portforward/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Easy Kubernetes Port-Forward For Python
"""

__version__ = "0.7.0"
__version__ = "0.7.1"

import asyncio
import contextlib
Expand Down

0 comments on commit 2ba845a

Please sign in to comment.