Skip to content

Commit

Permalink
releasing new version supporting new GPT4 models
Browse files Browse the repository at this point in the history
  • Loading branch information
AmberSahdev committed Jul 21, 2024
1 parent 9a2c279 commit 061b476
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from packaging.version import Version

version = Version('0.5.2')
version = Version('0.6.0')
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def build(signing_key=None):

# Notarize
os.system(f'xcrun notarytool submit --wait --keychain-profile "{keychain_profile}" --verbose dist/{zip_name}')
input(f'Check whether notarization was successful. You can check further logs using "xcrun notarytool log --keychain-profile {keychain_profile} <run-id>"')
input(f'Check whether notarization was successful using \n\t xcrun notarytool history --keychain-profile {keychain_profile}.\nYou can check debug logs using \n\t xcrun notarytool log --keychain-profile "{keychain_profile}" <run-id>')

# Staple
os.system(f'xcrun stapler staple dist/{app_name}.app')
Expand Down Expand Up @@ -109,6 +109,7 @@ def compile(signing_key=None):
# Manually including source code and submodules because app doesn't launch without it
'--add-data=app/*.py:.',
'--add-data=app/utils/*.py:utils', # Submodules need to be included manually
'--add-data=app/models/*.py:models', # Submodules need to be included manually

app_script
]
Expand Down

0 comments on commit 061b476

Please sign in to comment.