mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-31 12:19:42 +02:00
Made an additive change to `Pointer` by adding the `get_raw_value()` method, so bumping the minor version here. The `get_raw_dpc()` method was removed from the `KTIMER` extension class, which is currently unversioned.
12 lines
460 B
Python
12 lines
460 B
Python
# We use the SemVer 2.0.0 versioning scheme
|
|
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change
|
|
VERSION_MINOR = 25 # Number of changes that only add to the interface
|
|
VERSION_PATCH = 0 # Number of changes that do not change the interface
|
|
VERSION_SUFFIX = ""
|
|
|
|
PACKAGE_VERSION = (
|
|
".".join(str(x) for x in [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH])
|
|
+ VERSION_SUFFIX
|
|
)
|
|
"""The canonical version of the volatility3 package"""
|