Skip to content

Commit

Permalink
Upgrade to 0.9.0 (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidiwilliams committed Mar 15, 2024
1 parent ba522a5 commit 3d27a9c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Buzz.spec
Expand Up @@ -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")
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 0 additions & 2 deletions Makefile
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion buzz/__version__.py
@@ -1 +1 @@
VERSION = "0.8.4"
VERSION = "0.9.0"
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "buzz-captions"
version = "0.8.4"
version = "0.9.0"
description = ""
authors = ["Chidi Williams <williamschidi1@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 3d27a9c

Please sign in to comment.