From 603c641079fb8c744a695ae6eddb73a46243151d Mon Sep 17 00:00:00 2001 From: Steve McGrath Date: Fri, 22 Nov 2024 13:50:14 -0600 Subject: [PATCH] Version 1.6.0 --- CHANGELOG.md | 19 +++++++++++++++++++ tenable/version.py | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa5b8f549..d6c850249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.0] + +### Added + +- Tenable.sc plugin listing now supports the `filters` parameter #718 +- Tenable.sc report definition launching capability #656 +- Tenable.io (TVM) WAS Export support #850 +- Tenable.sc HostUUID support for accept & recast risks #843 + +[1.6.0]: https://github.com/tenable/pyTenable/compare/1.5.3...1.6.0 + +## [1.5.3] + +### Changed + +- Moved cryptography to be an optional package only for the pkcs12 extra + +[1.5.3]: https://github.com/tenable/pyTenable/compare/1.5.2...1.5.3 + ## [1.5.2] ### Changed diff --git a/tenable/version.py b/tenable/version.py index c3d13f933..4b5e6f704 100644 --- a/tenable/version.py +++ b/tenable/version.py @@ -1,2 +1,2 @@ -version = '1.5.3' -version_info = tuple(int(d) for d in version.split("-")[0].split(".")) +version = '1.6.0' +version_info = tuple(int(d) for d in version.split('-')[0].split('.'))