Skip to content

Commit

Permalink
Bump version number to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheitman committed Nov 24, 2019
1 parent 30e0e5e commit 9547ef8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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',
Expand Down

0 comments on commit 9547ef8

Please sign in to comment.