Skip to content

Commit 8ecc7df

Browse files
authored
Merge pull request #451 from volatilityfoundation/release/1.0.1
Release/1.0.1
2 parents 0e372b3 + 0f487e7 commit 8ecc7df

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,25 @@
66

77
from volatility3.framework import constants
88

9+
with open("README.md", "r", encoding="utf-8") as fh:
10+
long_description = fh.read()
11+
912
setuptools.setup(name = "volatility3",
1013
description = "Memory forensics framework",
1114
version = constants.PACKAGE_VERSION,
1215
license = "VSL",
1316
keywords = "volatility memory forensics framework windows linux volshell",
1417
author = "Volatility Foundation",
18+
long_description = long_description,
19+
long_description_content_type = "text/markdown",
1520
author_email = "[email protected]",
16-
url = "https://volatilityfoundation.org/volatility/",
21+
url = "https://github.com/volatilityfoundation/volatility3/",
1722
project_urls = {
1823
"Bug Tracker": "https://github.com/volatilityfoundation/volatility3/issues",
1924
"Documentation": "https://volatility3.readthedocs.io/",
2025
"Source Code": "https://github.com/volatilityfoundation/volatility3",
2126
},
27+
python_requires = '>=3.5.3',
2228
include_package_data = True,
2329
exclude_package_data = {
2430
'': ['development', 'development.*'],

volatility3/framework/constants/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# We use the SemVer 2.0.0 versioning scheme
4141
VERSION_MAJOR = 1 # Number of releases of the library with a breaking change
4242
VERSION_MINOR = 0 # Number of changes that only add to the interface
43-
VERSION_PATCH = 0 # Number of changes that do not change the interface
43+
VERSION_PATCH = 1 # Number of changes that do not change the interface
4444
VERSION_SUFFIX = ""
4545

4646
PACKAGE_VERSION = ".".join([str(x) for x in [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH]]) + VERSION_SUFFIX

0 commit comments

Comments
 (0)