2.2.0 section added to changelog

mino version bump
This commit is contained in:
onyx-and-iris 2023-07-10 16:20:59 +01:00
parent 6de78a4037
commit 5e39461966
3 changed files with 16 additions and 1 deletions

View File

@ -11,6 +11,20 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
- [x] - [x]
## [2.2.0] - 2023-07-10
### Added
- CAPIError class now stores fn_name, error code and message as class attributes.
### Changed
- macrobutton capi calls now use error code -9 on AttributeError (using an old version of the API).
### Fixed
- call to `self.vm_get_midi_message` now wrapped by {CBindings}.call.
## [2.1.1] - 2023-07-01 ## [2.1.1] - 2023-07-01
### Added ### Added

View File

@ -18,6 +18,7 @@ class App:
def __enter__(self): def __enter__(self):
self.vm.init_thread() self.vm.init_thread()
return self
def __exit__(self, exc_type, exc_value, traceback): def __exit__(self, exc_type, exc_value, traceback):
self.vm.end_thread() self.vm.end_thread()

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "voicemeeter-api" name = "voicemeeter-api"
version = "2.1.3" version = "2.2.0"
description = "A Python wrapper for the Voiceemeter API" description = "A Python wrapper for the Voiceemeter API"
authors = ["onyx-and-iris <code@onyxandiris.online>"] authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT" license = "MIT"