mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
bump to major version 1
This commit is contained in:
parent
a460c6aeb0
commit
e6ea1e5f4f
2
.gitignore
vendored
2
.gitignore
vendored
@ -131,3 +131,5 @@ dmypy.json
|
||||
# test/config
|
||||
quick.py
|
||||
config.toml
|
||||
|
||||
.vscode/
|
@ -11,6 +11,12 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
|
||||
|
||||
- [x]
|
||||
|
||||
## [1.0.0] - 2023-06-19
|
||||
|
||||
No changes to the codebase but it has been stable for several months and should already have been bumped to major version 1.0
|
||||
|
||||
I will move this commit to a separate branch in preparation for version 2.0.
|
||||
|
||||
## [0.9.0] - 2022-10-11
|
||||
|
||||
### Added
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "voicemeeter-api"
|
||||
version = "0.9.2"
|
||||
version = "1.0.0"
|
||||
description = "A Python wrapper for the Voiceemeter API"
|
||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||
license = "MIT"
|
||||
@ -31,3 +31,4 @@ dsl = "scripts:ex_dsl"
|
||||
midi = "scripts:ex_midi"
|
||||
obs = "scripts:ex_obs"
|
||||
observer = "scripts:ex_observer"
|
||||
test ="scripts:test"
|
||||
|
@ -20,3 +20,7 @@ def ex_obs():
|
||||
def ex_observer():
|
||||
path = Path.cwd() / "examples" / "observer" / "."
|
||||
subprocess.run(["py", str(path)])
|
||||
|
||||
|
||||
def test():
|
||||
subprocess.run(["pytest", "-v"])
|
||||
|
Loading…
Reference in New Issue
Block a user