Skip to content

Commit 4c327a8

Browse files
committed
Bump version v0.6.0-beta. 🎃
1 parent 8056bbd commit 4c327a8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
import glob
1313
import setuptools
1414

15+
import statics
16+
1517
exluded_files = ["build", "dist", "gdbfrontend.egg-info"]
1618

1719
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")) as f:
@@ -30,7 +32,7 @@
3032

3133
setuptools.setup(
3234
name = "gdbfrontend",
33-
version = "0.6.0",
35+
version = ".".join([str(i) for i in statics.VERSION[:3]]),
3436
description = "GDBFrontend is a easy, flexible and extensionable gui debugger.",
3537
long_description = long_description,
3638
long_description_content_type='text/markdown',

‎statics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Licensed under GNU/GPLv3
99
# Copyright (C) 2019, OÄŸuzhan EroÄŸlu (https://oguzhaneroglu.com/) <[email protected]>
1010

11-
VERSION = [0, 6, 0, "git"]
11+
VERSION = [0, 6, 0, "beta"]
1212
VERSION_STRING = "v"+".".join([str(i) for i in VERSION[:-1]])+"-"+VERSION[-1]
1313

1414
"""

0 commit comments

Comments
 (0)