Skip to content

Commit 9547ef8

Browse files
committed
Bump version number to 0.6.0
1 parent 30e0e5e commit 9547ef8

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
## [Unreleased]
66
### Added
77

8+
### Changed
9+
10+
### Deprecated
11+
12+
### Removed
13+
14+
### Fixed
15+
16+
### Security
17+
18+
## [0.6.0] - 2019-11-24
19+
### Added
20+
821
- Add Python 3 compatibility.
922
- Add classes for managing call conventions.
1023
- Add hook support to the `Emulator` class.
@@ -22,6 +35,7 @@ All notable changes to this project will be documented in this file.
2235

2336
### Changed
2437

38+
- Refactor ARM package.
2539
- Refactor ARM tests.
2640
- Refactor x86 package.
2741
- Refactor x86 tests.
@@ -189,7 +203,8 @@ All notable changes to this project will be documented in this file.
189203
### Added
190204
- First release.
191205

192-
[Unreleased]: https://github.com/programa-stic/barf-project/compare/v0.5.0...master
206+
[Unreleased]: https://github.com/programa-stic/barf-project/compare/v0.6.0...master
207+
[0.6.0]: https://github.com/programa-stic/barf-project/compare/v0.5.0...v0.6.0
193208
[0.5.0]: https://github.com/programa-stic/barf-project/compare/v0.4.0...v0.5.0
194209
[0.4.0]: https://github.com/programa-stic/barf-project/compare/v0.3...v0.4.0
195210
[0.3]: https://github.com/programa-stic/barf-project/compare/v0.2.1...v0.3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ For more information, see:
2121

2222
Current status:
2323

24-
| **Latest Release** | v0.5.0 |
24+
| **Latest Release** | v0.6.0 |
2525
|-------------------:|:-----------------------------------------------------------------------|
26-
| **URL** | https://github.com/programa-stic/barf-project/releases/tag/v0.5.0 |
27-
| **Change Log** | https://github.com/programa-stic/barf-project/blob/v0.5.0/CHANGELOG.md |
26+
| **URL** | https://github.com/programa-stic/barf-project/releases/tag/v0.6.0 |
27+
| **Change Log** | https://github.com/programa-stic/barf-project/blob/v0.6.0/CHANGELOG.md |
2828

2929
> All packages were tested on Ubuntu 16.04 (x86_64).
3030

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
from setuptools import setup
66
from setuptools import find_packages
77

8-
__version__ = '0.5.0'
8+
__version__ = '0.6.0'
99

1010
setup(
1111
author = 'Christian Heitman',
12-
author_email = 'cnheitman@fundacionsadosky.org.ar',
12+
author_email = 'barfframework@gmail.com',
1313
description = 'A multiplatform open source Binary Analysis and Reverse engineering Framework',
1414
download_url = 'https://github.com/programa-stic/barf-project/tarball/v' + __version__,
1515
install_requires = [
@@ -29,6 +29,7 @@
2929
'License :: OSI Approved :: BSD License',
3030
'Natural Language :: English',
3131
'Programming Language :: Python :: 2.7',
32+
'Programming Language :: Python :: 3.6',
3233
'Topic :: Scientific/Engineering :: Information Analysis',
3334
'Topic :: Security',
3435
'Topic :: Software Development :: Disassemblers',

0 commit comments

Comments
 (0)