Skip to content

Commit 2ab4813

Browse files
authored
Merge pull request #287 from MerginMaps/bump_0.12.0
Upgrade version to 0.12.0
2 parents 69419a6 + 74fb4be commit 2ab4813

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mergin/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# The version is also stored in ../setup.py
2-
__version__ = "0.11.0"
2+
__version__ = "0.12.0"
33

44
# There seems to be no single nice way to keep version info just in one place:
55
# 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='.*", "version='" + ver + "',")
29+
replace_in_file(setup_file, 'version=".*"', 'version="' + ver + '"')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mergin-client",
8-
version="0.11.0",
8+
version="0.12.0",
99
url="https://github.com/MerginMaps/python-api-client",
1010
license="MIT",
1111
author="Lutra Consulting Ltd.",

0 commit comments

Comments
 (0)