-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from in-toto/bump-release
Bump release v0.1.1
- Loading branch information
Showing
2 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Changelog | ||
|
||
## in-toto v0.1.0 | ||
## in-toto v0.1.1 | ||
* Initial pre-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,24 +33,20 @@ | |
""" | ||
from setuptools import setup, find_packages | ||
|
||
version = "0.1.0" | ||
|
||
description = """ | ||
A framework to define and secure the integrity of software supply chains""" | ||
|
||
long_description = """ | ||
To learn more about in-toto visit our source code | ||
`repository on GitHub <https://github.com/in-toto/in-toto/tree/{version}>`__. | ||
""".format(version=version) | ||
version = "0.1.1" | ||
|
||
setup( | ||
name="in-toto", | ||
version=version, | ||
author="New York University: Secure Systems Lab", | ||
author_email="[email protected]", | ||
url="https://in-toto.io", | ||
description=description, | ||
long_description=long_description, | ||
description=("A framework to define and secure the integrity of " | ||
"software supply chains"), | ||
long_description=("To learn more about in-toto visit our source code " | ||
"`repository on GitHub " | ||
"<https://github.com/in-toto/in-toto/tree/{version}>`__." | ||
.format(version=version)), | ||
license="MIT", | ||
keywords="software supply chain security", | ||
classifiers = [ | ||
|