Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorSheehan1 committed Dec 28, 2021
1 parent f4ec859 commit 1cc5268
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand All @@ -8,4 +8,3 @@ replace = version = "{new_version}"
[bumpversion:file:src/ui.py]
search = self.version = "{current_version}"
replace = self.version = "{new_version}"

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "comp_corrector"
version = "0.1.0"
version = "0.1.1"
description = "Desktop app using tkinter to speed up cs homework corrections"
authors = ["Conor Sheehan <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class App(object):
def __init__(self):
self.version = "0.1.0"
self.version = "0.1.1"
self.root = Tk()

# set default dimensions, color and title
Expand Down

0 comments on commit 1cc5268

Please sign in to comment.