Skip to content

Commit ce37cef

Browse files
flound1129claude
andcommitted
chore(version): set Squall version to 0.1.0
Update RELEASE-VERSION to 0.1.0, change git tag prefix from deluge- to squall- in version.py and setup.py, and update get_version docstring to reference Squall instead of Deluge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b6b17dc commit ce37cef

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

RELEASE-VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

deluge/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@
8989

9090

9191
def get_version():
92-
"""The program version from the egg metadata.
92+
"""The program version from the package metadata.
9393
9494
Returns:
95-
str: The version of Deluge.
95+
str: The version of Squall.
9696
"""
9797
return distribution('deluge').version
9898

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def osx_check():
4646
_exclude_package_data = {}
4747
_entry_points = {'console_scripts': [], 'gui_scripts': [], 'deluge.ui': []}
4848
_data_files = []
49-
_version = get_version(prefix='deluge-', suffix='.dev0')
49+
_version = get_version(prefix='squall-', suffix='.dev0')
5050

5151

5252
class CleanDocs(Command):

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def call_git_describe(prefix='', suffix=''):
5353
return version
5454

5555

56-
def get_version(prefix='deluge-', suffix='.dev0'):
56+
def get_version(prefix='squall-', suffix='.dev0'):
5757
try:
5858
with open(VERSION_FILE) as f:
5959
release_version = f.readline().strip()

0 commit comments

Comments
 (0)