From 3d27a9caa443da10354c1912023a6e8eea602151 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Fri, 15 Mar 2024 17:58:45 +0000 Subject: [PATCH] Upgrade to 0.9.0 (#687) --- Buzz.spec | 4 +++- Makefile | 2 -- buzz/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Buzz.spec b/Buzz.spec index bcfcbf58a..4ad3361f7 100644 --- a/Buzz.spec +++ b/Buzz.spec @@ -5,6 +5,8 @@ import shutil from PyInstaller.utils.hooks import collect_data_files, copy_metadata +from buzz.__version__ import VERSION + datas = [] datas += collect_data_files("torch") datas += copy_metadata("tqdm") @@ -92,7 +94,7 @@ app = BUNDLE( name="Buzz.app", icon="./assets/buzz.icns", bundle_identifier="com.chidiwilliams.buzz", - version="0.8.4", + version=VERSION, info_plist={ "NSPrincipalClass": "NSApplication", "NSHighResolutionCapable": "True", diff --git a/Makefile b/Makefile index 6920d6d77..d73151999 100644 --- a/Makefile +++ b/Makefile @@ -45,8 +45,6 @@ dist/Buzz dist/Buzz.app: buzz/whisper_cpp.py translation_mo version: poetry version ${version} echo "VERSION = \"${version}\"" > buzz/__version__.py - sed -i "" "s/version=.*,/version=\'${version_escaped}\',/" Buzz.spec - sed -i "" "s/\'version\':.*/'version': \'${version_escaped}\',/" setup.py CMAKE_FLAGS= ifeq ($(UNAME_S),Darwin) diff --git a/buzz/__version__.py b/buzz/__version__.py index 73e4291df..976684abd 100644 --- a/buzz/__version__.py +++ b/buzz/__version__.py @@ -1 +1 @@ -VERSION = "0.8.4" +VERSION = "0.9.0" diff --git a/pyproject.toml b/pyproject.toml index 9cf56c1c4..75fb1b33e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "buzz-captions" -version = "0.8.4" +version = "0.9.0" description = "" authors = ["Chidi Williams "] license = "MIT"