Skip to content

Commit

Permalink
V1.2.1 Release Prep (vivisect#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakuy0 authored Aug 28, 2024
1 parent c2fc612 commit e3d739a
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.2.1

[bumpversion:file:pyproject.toml]
search = version = '{current_version}'
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@
Vivisect Changelog
******************

V1.2.1 - 2024-07-24
===================
Fixes
-----
- Fix an off by one issue in the LNK parser.
(`#655 <https://github.com/vivisect/vivisect/pull/655>`_)
- Fix Callgraph initialization and UI rendering
(`#657 <https://github.com/vivisect/vivisect/pull/657>`_)
- Fix an issue in readMemString where the last null byte of a wide string should be considered part of the terminator.
(`#663 <https://github.com/vivisect/vivisect/pull/663>`_)
- Add a missing ARM alias.
(`#667 <https://github.com/vivisect/vivisect/pull/667>`_)
- Fix default ARM arch name.
(`#668 <https://github.com/vivisect/vivisect/pull/668>`_)

Devops
------
- Update to large resource class in CI configuration.
(`#526 <https://github.com/vivisect/vivisect/pull/526>`_)

Documentation
-------------
- Fix the readthedocs build.
(`#654 <https://github.com/vivisect/vivisect/pull/654>`_)

V1.2.0 - 2024-07-15
===================
Features
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'vivisect'
version = '1.2.0'
version = '1.2.1'
authors = [
{ name = 'The Vivisect Peeps', email = '[email protected]'}
]
description = 'Pure python disassembler, debugger, emulator, and static analysis framework'
readme = 'README.md'
requires-python = '>=3.11'
requires-python = '>=3.8'
license = { text = 'Apache License 2.0' }
classifiers = [
'Topic :: Security',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Debuggers',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License',
]

Expand Down
2 changes: 1 addition & 1 deletion vdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2409,6 +2409,6 @@ def _complete_libname(self, text, line, begidx, endidx):
##############################################################################
# The following are touched during the release process by bump2version.
# You should have no reason to modify these yourself
version = (1, 2, 0)
version = (1, 2, 1)
verstring = '.'.join([str(x) for x in version])
commit = ''
2 changes: 1 addition & 1 deletion vivisect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3357,6 +3357,6 @@ def getVivPath(*pathents):
##############################################################################
# The following are touched during the release process by bump2version.
# You should have no reason to modify these directly
version = (1, 2, 0)
version = (1, 2, 1)
verstring = '.'.join([str(x) for x in version])
commit = ''

0 comments on commit e3d739a

Please sign in to comment.