From 6e8fcf73ee0d720e66f359221caa2e090cfe873c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20L=C3=B6sche?= Date: Thu, 3 Aug 2023 12:45:26 +0200 Subject: [PATCH] [resoto][chore] Bump 3.7.0 (#1761) --- plugins/aws/pyproject.toml | 4 ++-- plugins/azure/pyproject.toml | 4 ++-- plugins/cleanup_aws_alarms/pyproject.toml | 4 ++-- plugins/cleanup_aws_loadbalancers/pyproject.toml | 6 +++--- plugins/cleanup_aws_vpcs/pyproject.toml | 6 +++--- plugins/cleanup_expired/pyproject.toml | 4 ++-- plugins/cleanup_untagged/pyproject.toml | 4 ++-- plugins/cleanup_volumes/pyproject.toml | 4 ++-- plugins/digitalocean/pyproject.toml | 4 ++-- plugins/dockerhub/pyproject.toml | 4 ++-- plugins/example_collector/pyproject.toml | 4 ++-- plugins/gcp/pyproject.toml | 4 ++-- plugins/github/pyproject.toml | 4 ++-- plugins/k8s/pyproject.toml | 4 ++-- plugins/onelogin/pyproject.toml | 4 ++-- plugins/onprem/pyproject.toml | 4 ++-- plugins/posthog/pyproject.toml | 4 ++-- plugins/protector/pyproject.toml | 4 ++-- plugins/random/pyproject.toml | 4 ++-- plugins/scarf/pyproject.toml | 4 ++-- plugins/slack/pyproject.toml | 4 ++-- plugins/tagvalidator/pyproject.toml | 4 ++-- plugins/vsphere/pyproject.toml | 4 ++-- resotocore/pyproject.toml | 2 +- resotocore/resotocore/__init__.py | 2 +- resotolib/pyproject.toml | 2 +- resotolib/resotolib/__init__.py | 2 +- resotometrics/pyproject.toml | 4 ++-- resotometrics/resotometrics/__init__.py | 2 +- resotoshell/pyproject.toml | 4 ++-- resotoshell/resotoshell/__init__.py | 2 +- resotoworker/pyproject.toml | 4 ++-- resotoworker/resotoworker/__init__.py | 2 +- 33 files changed, 61 insertions(+), 61 deletions(-) diff --git a/plugins/aws/pyproject.toml b/plugins/aws/pyproject.toml index ca0d9c562..6397d6531 100644 --- a/plugins/aws/pyproject.toml +++ b/plugins/aws/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resoto-plugin-aws" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Runs collector plugins and sends the result to resotocore." license = {file="LICENSE"} @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "resotodata", "retrying", "boto3", diff --git a/plugins/azure/pyproject.toml b/plugins/azure/pyproject.toml index 11cc8c917..62c689167 100644 --- a/plugins/azure/pyproject.toml +++ b/plugins/azure/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resoto-plugin-azure" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Runs collector plugins and sends the result to resotocore." license = {file="LICENSE"} @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "retrying", "azure-identity", "azure-mgmt-resource" diff --git a/plugins/cleanup_aws_alarms/pyproject.toml b/plugins/cleanup_aws_alarms/pyproject.toml index 4860f13b4..ea2348050 100644 --- a/plugins/cleanup_aws_alarms/pyproject.toml +++ b/plugins/cleanup_aws_alarms/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resoto-plugin-cleanup-aws-alarms" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "AWS Cloudwatch Alarms Cleaner Plugin" license = {file="LICENSE"} @@ -26,7 +26,7 @@ classifiers = [ ] readme = {file="README.md", content-type="text/markdown"} -dependencies = [ "resotolib==3.6.5" ] +dependencies = [ "resotolib==3.7.0" ] [project.entry-points."resoto.plugins"] cleanup_aws_alarms = "resoto_plugin_cleanup_aws_alarms:CleanupAWSAlarmsPlugin" diff --git a/plugins/cleanup_aws_loadbalancers/pyproject.toml b/plugins/cleanup_aws_loadbalancers/pyproject.toml index 562395860..5712ddea4 100644 --- a/plugins/cleanup_aws_loadbalancers/pyproject.toml +++ b/plugins/cleanup_aws_loadbalancers/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resoto-plugin-cleanup-aws-loadbalancers" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "AWS Loadbalancers Cleaner Plugin" license = {file="LICENSE"} @@ -27,8 +27,8 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", - "resoto-plugin-aws==3.6.5" + "resotolib==3.7.0", + "resoto-plugin-aws==3.7.0" ] [project.entry-points."resoto.plugins"] diff --git a/plugins/cleanup_aws_vpcs/pyproject.toml b/plugins/cleanup_aws_vpcs/pyproject.toml index c16e89559..fd1f812ba 100644 --- a/plugins/cleanup_aws_vpcs/pyproject.toml +++ b/plugins/cleanup_aws_vpcs/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-cleanup-aws-vpcs" description = "AWS VPC Cleaner Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,8 +27,8 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", - "resoto-plugin-aws==3.6.5" + "resotolib==3.7.0", + "resoto-plugin-aws==3.7.0" ] [project.entry-points."resoto.plugins"] diff --git a/plugins/cleanup_expired/pyproject.toml b/plugins/cleanup_expired/pyproject.toml index 917ae155b..8af83bac0 100644 --- a/plugins/cleanup_expired/pyproject.toml +++ b/plugins/cleanup_expired/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-cleanup-expired" description = "Resoto Expired Resource Cleanup Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/cleanup_untagged/pyproject.toml b/plugins/cleanup_untagged/pyproject.toml index 259859c37..2e6b46386 100644 --- a/plugins/cleanup_untagged/pyproject.toml +++ b/plugins/cleanup_untagged/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-cleanup-untagged" description = "Resoto Cleanup Untagged Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/cleanup_volumes/pyproject.toml b/plugins/cleanup_volumes/pyproject.toml index ce6a3ef34..a51d79d4e 100644 --- a/plugins/cleanup_volumes/pyproject.toml +++ b/plugins/cleanup_volumes/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-cleanup-volumes" description = "Volume Cleaner Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/digitalocean/pyproject.toml b/plugins/digitalocean/pyproject.toml index c70a5a9b0..2287bb1a2 100644 --- a/plugins/digitalocean/pyproject.toml +++ b/plugins/digitalocean/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-digitalocean" description = "Resoto DigitalOcean Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "boto3", "requests", "botocore", diff --git a/plugins/dockerhub/pyproject.toml b/plugins/dockerhub/pyproject.toml index baea87348..c18e05348 100644 --- a/plugins/dockerhub/pyproject.toml +++ b/plugins/dockerhub/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-dockerhub" description = "Resoto Docker Hub Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "requests", ] diff --git a/plugins/example_collector/pyproject.toml b/plugins/example_collector/pyproject.toml index 7575b8d1a..31fae4c07 100644 --- a/plugins/example_collector/pyproject.toml +++ b/plugins/example_collector/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-example-collector" description = "Resoto Example Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/gcp/pyproject.toml b/plugins/gcp/pyproject.toml index 9e35c0371..f5e0d5c02 100644 --- a/plugins/gcp/pyproject.toml +++ b/plugins/gcp/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-gcp" description = "Resoto GCP Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "google-api-python-client", "oauth2client", "retrying", diff --git a/plugins/github/pyproject.toml b/plugins/github/pyproject.toml index 4a43bd7a5..17d92cbbe 100644 --- a/plugins/github/pyproject.toml +++ b/plugins/github/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-github" description = "Resoto Github Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "PyGithub", ] diff --git a/plugins/k8s/pyproject.toml b/plugins/k8s/pyproject.toml index 4c3d81019..4e439fec1 100644 --- a/plugins/k8s/pyproject.toml +++ b/plugins/k8s/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-k8s" description = "Resoto Kubernetes Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "kubernetes", ] diff --git a/plugins/onelogin/pyproject.toml b/plugins/onelogin/pyproject.toml index abae5bfe8..c296575bb 100644 --- a/plugins/onelogin/pyproject.toml +++ b/plugins/onelogin/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-onelogin" description = "Resoto OneLogin Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "onelogin==2.0.4", ] diff --git a/plugins/onprem/pyproject.toml b/plugins/onprem/pyproject.toml index eb69a9c4c..b6a43f32c 100644 --- a/plugins/onprem/pyproject.toml +++ b/plugins/onprem/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-onprem" description = "Resoto On-Premises Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "paramiko", ] diff --git a/plugins/posthog/pyproject.toml b/plugins/posthog/pyproject.toml index 78b1e7854..e1cacd39f 100644 --- a/plugins/posthog/pyproject.toml +++ b/plugins/posthog/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-posthog" description = "Resoto Posthog Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "requests", ] diff --git a/plugins/protector/pyproject.toml b/plugins/protector/pyproject.toml index 432666d52..74c8264ec 100644 --- a/plugins/protector/pyproject.toml +++ b/plugins/protector/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-protector" description = "Resoto Protector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/random/pyproject.toml b/plugins/random/pyproject.toml index 89dab16fe..63d2aea7b 100644 --- a/plugins/random/pyproject.toml +++ b/plugins/random/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-random" description = "Resoto Random Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/scarf/pyproject.toml b/plugins/scarf/pyproject.toml index 6d50afa95..124d71aca 100644 --- a/plugins/scarf/pyproject.toml +++ b/plugins/scarf/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-scarf" description = "Resoto Scarf Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "requests", ] diff --git a/plugins/slack/pyproject.toml b/plugins/slack/pyproject.toml index c2ce8a17a..795af30d8 100644 --- a/plugins/slack/pyproject.toml +++ b/plugins/slack/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-slack" description = "Resoto Slack Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "slack-sdk", "retrying", ] diff --git a/plugins/tagvalidator/pyproject.toml b/plugins/tagvalidator/pyproject.toml index ab80a87ba..0b3211f44 100644 --- a/plugins/tagvalidator/pyproject.toml +++ b/plugins/tagvalidator/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-tagvalidator" description = "Resoto Tag Validator Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", ] [project.entry-points."resoto.plugins"] diff --git a/plugins/vsphere/pyproject.toml b/plugins/vsphere/pyproject.toml index 79b045ece..70c2f5904 100644 --- a/plugins/vsphere/pyproject.toml +++ b/plugins/vsphere/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "resoto-plugin-vsphere" description = "Resoto VSphere Collector Plugin" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] license = {file="LICENSE"} requires-python = ">=3.9" @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "pyvmomi", ] diff --git a/resotocore/pyproject.toml b/resotocore/pyproject.toml index 0245f860d..81da554ba 100644 --- a/resotocore/pyproject.toml +++ b/resotocore/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resotocore" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Keeps all the things." license = {file="LICENSE"} diff --git a/resotocore/resotocore/__init__.py b/resotocore/resotocore/__init__.py index 1962bbeb5..fde00e9e2 100644 --- a/resotocore/resotocore/__init__.py +++ b/resotocore/resotocore/__init__.py @@ -11,7 +11,7 @@ __author__ = "Some Engineering Inc." __license__ = "Apache 2.0" __copyright__ = "Copyright © 2023 Some Engineering Inc." -__version__ = "3.6.5" +__version__ = "3.7.0" def version() -> str: diff --git a/resotolib/pyproject.toml b/resotolib/pyproject.toml index a8fa36c8f..8504d58dd 100644 --- a/resotolib/pyproject.toml +++ b/resotolib/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resotolib" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Resoto common library." license = {file="LICENSE"} diff --git a/resotolib/resotolib/__init__.py b/resotolib/resotolib/__init__.py index 7125fc3b8..20414566c 100644 --- a/resotolib/resotolib/__init__.py +++ b/resotolib/resotolib/__init__.py @@ -11,4 +11,4 @@ __author__ = "Some Engineering Inc." __license__ = "Apache 2.0" __copyright__ = "Copyright © 2023 Some Engineering Inc." -__version__ = "3.6.5" +__version__ = "3.7.0" diff --git a/resotometrics/pyproject.toml b/resotometrics/pyproject.toml index 2d0fca0da..b47b383c8 100644 --- a/resotometrics/pyproject.toml +++ b/resotometrics/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resotometrics" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Exports Resoto metrics in Prometheus format." license = {file="LICENSE"} @@ -27,7 +27,7 @@ classifiers = [ readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5" + "resotolib==3.7.0" ] [pyproject.optional-dependencies] diff --git a/resotometrics/resotometrics/__init__.py b/resotometrics/resotometrics/__init__.py index b72e07731..efd712793 100644 --- a/resotometrics/resotometrics/__init__.py +++ b/resotometrics/resotometrics/__init__.py @@ -11,4 +11,4 @@ __author__ = "Some Engineering Inc." __license__ = "Apache 2.0" __copyright__ = "Copyright © 2023 Some Engineering Inc." -__version__ = "3.6.5" +__version__ = "3.7.0" diff --git a/resotoshell/pyproject.toml b/resotoshell/pyproject.toml index 7c98a07f7..69160aadb 100644 --- a/resotoshell/pyproject.toml +++ b/resotoshell/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resotoshell" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Commandline interpreter to interact with Resoto." license = {file="LICENSE"} @@ -28,7 +28,7 @@ readme = {file="README.md", content-type="text/markdown"} keywords = ["cloud security"] dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "prompt-toolkit", "rich", "resotoclient", diff --git a/resotoshell/resotoshell/__init__.py b/resotoshell/resotoshell/__init__.py index 3a139b3f0..4ca17deef 100644 --- a/resotoshell/resotoshell/__init__.py +++ b/resotoshell/resotoshell/__init__.py @@ -11,4 +11,4 @@ __author__ = "Some Engineering Inc." __license__ = "Apache 2.0" __copyright__ = "Copyright © 2023 Some Engineering Inc." -__version__ = "3.6.5" +__version__ = "3.7.0" diff --git a/resotoworker/pyproject.toml b/resotoworker/pyproject.toml index 3d84f5cda..9bdb7516f 100644 --- a/resotoworker/pyproject.toml +++ b/resotoworker/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "resotoworker" -version = "3.6.5" +version = "3.7.0" authors = [{name="Some Engineering Inc."}] description = "Runs collector plugins and sends the result to resotocore." license = {file="LICENSE"} @@ -9,7 +9,7 @@ classifiers = [ "Programming Language :: Python :: 3" ] readme = {file="README.md", content-type="text/markdown"} dependencies = [ - "resotolib==3.6.5", + "resotolib==3.7.0", "tenacity", "CherryPy", ] diff --git a/resotoworker/resotoworker/__init__.py b/resotoworker/resotoworker/__init__.py index 16e3f3a11..4c8331a54 100644 --- a/resotoworker/resotoworker/__init__.py +++ b/resotoworker/resotoworker/__init__.py @@ -11,4 +11,4 @@ __author__ = "Some Engineering Inc." __license__ = "Apache 2.0" __copyright__ = "Copyright © 2023 Some Engineering Inc." -__version__ = "3.6.5" +__version__ = "3.7.0"