Skip to content

Commit ed892f5

Browse files
committed
bump version
1 parent b233b81 commit ed892f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mergin/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# The version is also stored in ../setup.py
3-
__version__ = '0.7.2'
3+
__version__ = '1.0.0'
44

55
# There seems to be no single nice way to keep version info just in one place:
66
# https://packaging.python.org/guides/single-sourcing-package-version/

scripts/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def replace_in_file(filepath, regex, sub):
2626

2727
setup_file = os.path.join(dir_path, os.pardir, "setup.py")
2828
print("patching " + setup_file)
29-
replace_in_file(setup_file, "VERSION\s=\s'.*", "VERSION = '" + ver + "'")
29+
replace_in_file(setup_file, "VERSION='.*", "VERSION='" + ver + "'")

0 commit comments

Comments
 (0)