Skip to content

Commit

Permalink
release: bump version 0.9.13
Browse files Browse the repository at this point in the history
  • Loading branch information
e-lie committed Nov 11, 2024
1 parent 4731f7c commit 27ffe87
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion FoxDotEditor/FoxDotEditor/Editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, CodeClass):
# Configure Renardo's namespace to include the editor
CodeClass.namespace['GUI'] = self
CodeClass.namespace['Player'].widget = self
self.version = this_version = '0.9.13.dev14'
self.version = this_version = '0.9.13'
pypi_version = get_pypi_version()
self.theme = COLOR_THEME

Expand Down
4 changes: 2 additions & 2 deletions FoxDotEditor/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='FoxDotEditor',
version="0.9.13.dev14",
version="0.9.13",
description='Original FoxDot editor extracted from FoxDot Project - Live coding music with SuperCollider',
author='Elie Gavoty',
author_email='eliegavoty@free.fr',
Expand All @@ -20,7 +20,7 @@
# data_files=[('', 'LICENSE')],
package_data={'FoxDotEditor': ['README.md', 'img/*', 'tmp/*', 'themes/*'], },
install_requires=[
'renardo-lib==0.9.13.dev14',
'renardo-lib==0.9.13',
'renardo_gatherer==0.1.4.dev1',
'psutil',
'ttkbootstrap==1.10.1',
Expand Down
2 changes: 1 addition & 1 deletion builder/manual/bundle_linux.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export RENARDO_VERSION="0.9.13.dev14"
export RENARDO_VERSION="0.9.13"

echo '######## creating venv'
rm -Rf /tmp/venv_pyinstaller
Expand Down
2 changes: 1 addition & 1 deletion builder/manual/bundle_macos.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export RENARDO_VERSION="0.9.13.dev14"
export RENARDO_VERSION="0.9.13"

echo '######## creating venv'
python3 -m venv ../venv
Expand Down
2 changes: 1 addition & 1 deletion builder/manual/bundle_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set "VENV_DIR=%userprofile%\Desktop\venv_pyinstaller"

@RD /S /Q "%VENV_DIR%"

set "RENARDO_VERSION=0.9.13.dev14"
set "RENARDO_VERSION=0.9.13"

python -m venv %VENV_DIR%

Expand Down
4 changes: 2 additions & 2 deletions builder/renardo-0.9.13.dev1.linuxspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exe = EXE(
a.scripts,
[],
exclude_binaries=True,
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
debug=False,
bootloader_ignore_signals=False,
strip=False,
Expand All @@ -55,5 +55,5 @@ coll = COLLECT(
strip=False,
upx=True,
upx_exclude=[],
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
)
4 changes: 2 additions & 2 deletions builder/renardo-0.9.13.dev1.macspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exe = EXE(
a.scripts,
[],
exclude_binaries=True,
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
debug=False,
bootloader_ignore_signals=False,
strip=False,
Expand All @@ -55,5 +55,5 @@ coll = COLLECT(
strip=False,
upx=True,
upx_exclude=[],
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
)
4 changes: 2 additions & 2 deletions builder/renardo-0.9.13.dev1.windowsspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exe = EXE(
a.scripts,
[],
exclude_binaries=True,
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
debug=False,
bootloader_ignore_signals=False,
strip=False,
Expand All @@ -55,5 +55,5 @@ coll = COLLECT(
strip=False,
upx=True,
upx_exclude=[],
name='renardo-0.9.13.dev14',
name='renardo-0.9.13',
)
6 changes: 3 additions & 3 deletions renardo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='renardo',
version="0.9.13.dev14",
version="0.9.13",
description='Launcher/config editor for Renardo livecoding environment',
author='Elie Gavoty',
author_email='eliegavoty@free.fr',
Expand All @@ -24,8 +24,8 @@
# data_files=[('', 'LICENSE')],
package_data = {'renardo': ['RenardoTUI.tcss'],},
install_requires=[
'renardo-lib==0.9.13.dev14',
'FoxDotEditor==0.9.13.dev14',
'renardo-lib==0.9.13',
'FoxDotEditor==0.9.13',
'renardo_gatherer==0.1.4.dev1',
'psutil',
'textual==0.79.1',
Expand Down
2 changes: 1 addition & 1 deletion renardo_lib/renardo_lib/runtime/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def Go():
# Util class
class _util:
def __repr__(self):
return "Renardo ver. 0.9.13.dev14"
return "Renardo ver. 0.9.13"
def reload(self):
Server.init_connection()
SynthDefs.reload()
Expand Down
2 changes: 1 addition & 1 deletion renardo_lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='renardo_lib',
version="0.9.13.dev14",
version="0.9.13",
description='Python livecoding environment - New fork of FoxDot',
author='Elie Gavoty',
author_email='eliegavoty@free.fr',
Expand Down

0 comments on commit 27ffe87

Please sign in to comment.