Skip to content

Commit 0464c49

Browse files
author
Eric Hennenfent
authored
Manticore 0.3.1 (#1503)
1 parent 2be827e commit 0464c49

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
# Change Log
22

3-
## [Unreleased](https://github.com/trailofbits/manticore/compare/0.3.0...HEAD)
3+
## [Unreleased](https://github.com/trailofbits/manticore/compare/0.3.1...HEAD)
4+
5+
## 0.3.1 - 2019-08-06
6+
7+
Thanks to our external contributors!
8+
9+
- [arcz](https://github.com/trailofbits/manticore/commits?author=arcz)
10+
11+
### Ethereum
12+
* Smart contracts are now compiled using [Crytic-Compile](https://github.com/crytic/crytic-compile) [#1406](https://github.com/trailofbits/manticore/pull/1406)
13+
* Added detector for strict comparisons to BALANCE [#1481](https://github.com/trailofbits/manticore/pull/1481)
14+
* Added bitshift instructions [#1498](https://github.com/trailofbits/manticore/pull/1498)
15+
* Added stub for STATICCALL (does not enforce static nature) [#1494](https://github.com/trailofbits/manticore/pull/1494)
16+
* Updated EVM Examples [#1486](https://github.com/trailofbits/manticore/pull/1486)
17+
18+
### Native
19+
* Fixed `getdents` syscall [#1472](https://github.com/trailofbits/manticore/pull/1472)
20+
* Fixed state merging examples [#1482](https://github.com/trailofbits/manticore/pull/1482)
21+
* Support LSR.W on ARMV7 [#1363](https://github.com/trailofbits/manticore/pull/1363)
22+
* Fixed CrackMe Example [#1502](https://github.com/trailofbits/manticore/pull/1502)
23+
* Optimize CMPXCHG8B [#1501](https://github.com/trailofbits/manticore/pull/1501)
24+
* Added `fast_crash` configuration setting that causes Manticore to immediately produce a finding on memory unsafety [#1485](https://github.com/trailofbits/manticore/pull/1485)
25+
26+
### Other
27+
* **[changed API]** Moved `issymbolic` into SMTLib to improve performance [#1456](https://github.com/trailofbits/manticore/pull/1456)
28+
* Refactored API Docs [#1469](https://github.com/trailofbits/manticore/pull/1469)
29+
* Fixed `FileNotFound` Error on state loading [#1480](https://github.com/trailofbits/manticore/pull/1480)
430

531
## 0.3.0 - 2019-06-06
632

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = "0.3.0"
57+
version = "0.3.1"
5858
# The full version, including alpha/beta/rc tags.
59-
release = "0.3.0"
59+
release = "0.3.1"
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def rtd_dependent_deps():
3030
description="Manticore is a symbolic execution tool for analysis of binaries and smart contracts.",
3131
url="https://github.com/trailofbits/manticore",
3232
author="Trail of Bits",
33-
version="0.3.0",
33+
version="0.3.1",
3434
packages=find_packages(exclude=["tests", "tests.*"]),
3535
python_requires=">=3.6",
3636
install_requires=[

0 commit comments

Comments
 (0)