1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-17 21:18:27 +00:00

Updated changelog & Python binding version.

This commit is contained in:
Andrei Vlad LUTAS 2024-03-27 09:21:00 +02:00
parent 4bc4636765
commit 44dc7c6cbb
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,12 @@ All notable (user-facing) changes to this project will be documented in this fil
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [2.1.4] - 2024-03-27
### Changed
- Removed no longer needed static assert.
## [2.1.3] - 2024-03-04
### Changed

View File

@ -12,7 +12,7 @@ from setuptools import find_packages, setup, Command, Extension, Distribution
from codecs import open
VERSION = (0, 3, 0)
LIBRARY_VERSION = (2, 1, 3)
LIBRARY_VERSION = (2, 1, 4)
DIR_INCLUDE = '../../inc'
here = os.path.abspath(os.path.dirname(__file__))