diff --git a/CHANGELOG.md b/CHANGELOG.md index 69571756..3ba20e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. ## [Unreleased] ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [0.6.0] - 2019-11-24 +### Added + - Add Python 3 compatibility. - Add classes for managing call conventions. - Add hook support to the `Emulator` class. @@ -22,6 +35,7 @@ All notable changes to this project will be documented in this file. ### Changed +- Refactor ARM package. - Refactor ARM tests. - Refactor x86 package. - Refactor x86 tests. @@ -189,7 +203,8 @@ All notable changes to this project will be documented in this file. ### Added - First release. -[Unreleased]: https://github.com/programa-stic/barf-project/compare/v0.5.0...master +[Unreleased]: https://github.com/programa-stic/barf-project/compare/v0.6.0...master +[0.6.0]: https://github.com/programa-stic/barf-project/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/programa-stic/barf-project/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/programa-stic/barf-project/compare/v0.3...v0.4.0 [0.3]: https://github.com/programa-stic/barf-project/compare/v0.2.1...v0.3 diff --git a/README.md b/README.md index f8960b02..5aed4f01 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,10 @@ For more information, see: Current status: -| **Latest Release** | v0.5.0 | +| **Latest Release** | v0.6.0 | |-------------------:|:-----------------------------------------------------------------------| -| **URL** | https://github.com/programa-stic/barf-project/releases/tag/v0.5.0 | -| **Change Log** | https://github.com/programa-stic/barf-project/blob/v0.5.0/CHANGELOG.md | +| **URL** | https://github.com/programa-stic/barf-project/releases/tag/v0.6.0 | +| **Change Log** | https://github.com/programa-stic/barf-project/blob/v0.6.0/CHANGELOG.md | > All packages were tested on Ubuntu 16.04 (x86_64). diff --git a/setup.py b/setup.py index aef7014a..f5fee02f 100644 --- a/setup.py +++ b/setup.py @@ -5,11 +5,11 @@ from setuptools import setup from setuptools import find_packages -__version__ = '0.5.0' +__version__ = '0.6.0' setup( author = 'Christian Heitman', - author_email = 'cnheitman@fundacionsadosky.org.ar', + author_email = 'barfframework@gmail.com', description = 'A multiplatform open source Binary Analysis and Reverse engineering Framework', download_url = 'https://github.com/programa-stic/barf-project/tarball/v' + __version__, install_requires = [ @@ -29,6 +29,7 @@ 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.6', 'Topic :: Scientific/Engineering :: Information Analysis', 'Topic :: Security', 'Topic :: Software Development :: Disassemblers',