Manticore 0.1.8 (#851)

(thanks for 1k)

* Bump version numbers

* initial changelog update

* Add changelog content

* add contribs
This commit is contained in:
Mark Mossberg 2018-03-30 18:26:26 -04:00 committed by GitHub
parent 2f382a9d1c
commit bda9c091b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 3 deletions

View File

@ -2,7 +2,27 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/).
## [Unreleased](https://github.com/trailofbits/manticore/compare/0.1.7...HEAD)
## [Unreleased](https://github.com/trailofbits/manticore/compare/0.1.8...HEAD)
## 0.1.8 - 2018-03-30
Thanks to our external contributors!
- [khorben](https://github.com/khorben)
- [disconnect3d](https://github.com/disconnect3d)
- [arunjohnkuruvilla](https://github.com/arunjohnkuruvilla)
- [mroll](https://github.com/mroll)
### Added
- Ethereum: `--txaccount` cli argument to control caller of transaction
- Ethereum: Per state execution trace files in workspace
### Fixed
- Linux: `--data` cli argument to specify concrete stdin
- Numerous Ethereum fixes and stability improvements
- Fixes for native cpu emulation
## 0.1.7 - 2018-02-23

View File

@ -60,7 +60,7 @@ def parse_arguments():
parser.add_argument('--workspace', type=str, default=None,
help=("A folder name for temporaries and results."
"(default mcore_?????)"))
parser.add_argument('--version', action='version', version='Manticore 0.1.7',
parser.add_argument('--version', action='version', version='Manticore 0.1.8',
help='Show program version information')
parser.add_argument('--txlimit', type=positive,
help='Maximum number of symbolic transactions to run (positive integer) (Ethereum only)')

View File

@ -15,7 +15,7 @@ setup(
description='Manticore is a symbolic execution tool for analysis of binaries and smart contracts.',
url='https://github.com/trailofbits/manticore',
author='Trail of Bits',
version='0.1.7',
version='0.1.8',
packages=find_packages(),
install_requires=[
'capstone>=3.0.5rc2',