Skip to content

Update version numbers for 3.0.7 release #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions osquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Comment on lines +8 to 11
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These values now match what is in the main osquery repo.


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion osquery/management.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def start_watcher(client, interval):

def start_extension(name="<unknown>",
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.
Expand Down