bump to major version 1

This commit is contained in:
onyx-and-iris 2023-06-19 20:03:26 +01:00
parent a460c6aeb0
commit e6ea1e5f4f
4 changed files with 14 additions and 1 deletions

2
.gitignore vendored
View File

@ -131,3 +131,5 @@ dmypy.json
# test/config
quick.py
config.toml
.vscode/

View File

@ -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

View File

@ -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"

View File

@ -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"])