Skip to content

Commit

Permalink
Bump version: 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gideonshaked committed Jul 25, 2021
1 parent ea91ad1 commit 05fb3b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.6.0
commit = True
tag = True
sign_tags = True
Expand Down
2 changes: 1 addition & 1 deletion src/client/client/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MainApplication:
def __init__(self, master: tk.Tk):
self.master = master
self.frame = tk.Frame(master)
self.master.title("PALMS v0.5.0")
self.master.title("PALMS v0.6.0")
self.master.geometry("")
self.master.resizable(False, False)
self.master.grid_columnconfigure(0, weight=1, uniform="spam")
Expand Down
2 changes: 1 addition & 1 deletion src/server/server/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion src/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="server",
version="0.5.0",
version="0.6.0",
packages=["server"],
python_requires=">=3.6",
)

0 comments on commit 05fb3b1

Please sign in to comment.