Skip to content

Commit

Permalink
Merge pull request #451 from volatilityfoundation/release/1.0.1
Browse files Browse the repository at this point in the history
Release/1.0.1
  • Loading branch information
ikelos authored Feb 1, 2021
2 parents 0e372b3 + 0f487e7 commit 8ecc7df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,25 @@

from volatility3.framework import constants

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(name = "volatility3",
description = "Memory forensics framework",
version = constants.PACKAGE_VERSION,
license = "VSL",
keywords = "volatility memory forensics framework windows linux volshell",
author = "Volatility Foundation",
long_description = long_description,
long_description_content_type = "text/markdown",
author_email = "volatility@volatilityfoundation.org",
url = "https://volatilityfoundation.org/volatility/",
url = "https://github.com/volatilityfoundation/volatility3/",
project_urls = {
"Bug Tracker": "https://github.com/volatilityfoundation/volatility3/issues",
"Documentation": "https://volatility3.readthedocs.io/",
"Source Code": "https://github.com/volatilityfoundation/volatility3",
},
python_requires = '>=3.5.3',
include_package_data = True,
exclude_package_data = {
'': ['development', 'development.*'],
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 1 # Number of releases of the library with a breaking change
VERSION_MINOR = 0 # Number of changes that only add to the interface
VERSION_PATCH = 0 # Number of changes that do not change the interface
VERSION_PATCH = 1 # 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
Expand Down

0 comments on commit 8ecc7df

Please sign in to comment.