From 5eca17580e9b9b6ff2d8d94693a286a81073fd3d Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Thu, 14 Apr 2022 17:02:20 -0700 Subject: [PATCH] Update version numbers for 3.0.7 release Also update copyright notice. --- osquery/__init__.py | 6 +++--- osquery/management.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/osquery/__init__.py b/osquery/__init__.py index 58c52b4..fa9ec76 100644 --- a/osquery/__init__.py +++ b/osquery/__init__.py @@ -4,10 +4,10 @@ """ __title__ = "osquery" -__version__ = "3.0.6" -__author__ = "osquery developers" +__version__ = "3.0.7" +__author__ = "osquery authors" __license__ = "BSD" -__copyright__ = "Copyright 2015 Facebook" +__copyright__ = "Copyright 2015-present, The osquery authors" __url__ = "https://osquery.io" __all__ = [ diff --git a/osquery/management.py b/osquery/management.py index a0adc00..6eb405c 100644 --- a/osquery/management.py +++ b/osquery/management.py @@ -202,7 +202,7 @@ def start_watcher(client, interval): def start_extension(name="", version="0.0.0", - sdk_version="1.8.0", + sdk_version="3.0.7", min_sdk_version="1.8.0"): """Start your extension by communicating with osquery core and starting a thrift server.