summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorПавел Жуков <33721692+LeaveMyYard@users.noreply.github.com>2023-05-27 00:05:46 +0300
committerПавел Жуков <33721692+LeaveMyYard@users.noreply.github.com>2023-05-27 00:05:46 +0300
commita562d52986aaec384e4363699e3b97c85d6318f7 (patch)
treeca498166fdea8b26846d61c3d6dfedbcf1db971e
parent0609ae5b62947b0d55505dec23b9b4d3a5909d89 (diff)
Fix version literal inside the code
-rw-r--r--pyproject.toml2
-rw-r--r--robusta_krr/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index fe9317c..d6db5aa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robusta-krr"
-version = "1.0.0"
+version = "1.1.1"
description = "Robusta's Resource Recommendation engine for Kubernetes"
authors = ["Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com>"]
license = "MIT"
diff --git a/robusta_krr/__init__.py b/robusta_krr/__init__.py
index 3417aa1..cc72604 100644
--- a/robusta_krr/__init__.py
+++ b/robusta_krr/__init__.py
@@ -1,4 +1,4 @@
from .main import run
-__version__ = "1.0.0"
+__version__ = "1.1.1"
__all__ = ["run", "__version__"]