diff --git a/API_CHANGES.md b/API_CHANGES.md index 61d8781fb..4adeaaf4d 100644 --- a/API_CHANGES.md +++ b/API_CHANGES.md @@ -4,6 +4,11 @@ API Changes When an addition to the existing API is made, the minor version is bumped. When an API feature or function is removed or changed, the major version is bumped. +2.6.0 +===== +Plugins defining treegrid columns can use three-tuples, including a new third "extra" parameter to determine if a column +should be hidden by default. + 2.5.0 ===== Add in support for specifying a type override for object_from_symbol diff --git a/volatility3/framework/constants/__init__.py b/volatility3/framework/constants/__init__.py index 09dded076..9aaafb933 100644 --- a/volatility3/framework/constants/__init__.py +++ b/volatility3/framework/constants/__init__.py @@ -44,8 +44,8 @@ BANG = "!" # We use the SemVer 2.0.0 versioning scheme VERSION_MAJOR = 2 # Number of releases of the library with a breaking change -VERSION_MINOR = 5 # Number of changes that only add to the interface -VERSION_PATCH = 2 # Number of changes that do not change the interface +VERSION_MINOR = 6 # Number of changes that only add to the interface +VERSION_PATCH = 0 # Number of changes that do not change the interface VERSION_SUFFIX = "" # TODO: At version 2.0.0, remove the symbol_shift feature