From e6ea1e5f4f5c8aac43ab8a2281d86c9360b63910 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 19 Jun 2023 20:03:26 +0100 Subject: [PATCH] bump to major version 1 --- .gitignore | 2 ++ CHANGELOG.md | 6 ++++++ pyproject.toml | 3 ++- scripts.py | 4 ++++ 4 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dd67b56..693a276 100644 --- a/.gitignore +++ b/.gitignore @@ -131,3 +131,5 @@ dmypy.json # test/config quick.py config.toml + +.vscode/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b9346e..3802bcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 6aca416..875cbb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] 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" diff --git a/scripts.py b/scripts.py index afb925e..2eee543 100644 --- a/scripts.py +++ b/scripts.py @@ -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"])