change quotes

This commit is contained in:
Semantic Versioner 2019-11-25 13:33:05 -05:00
parent 5da6a24cf7
commit 3c7f18ff26
2 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
[bumpversion] [bumpversion]
current_version = 1.0.9 current_version = develop
commit = False commit = False
tag = True tag = True
tag_name = {new_version} tag_name = {new_version}
message = Bump version: {current_version} -> {new_version} message = Bump version: {current_version} -> {new_version}
[bumpversion:file:semver/__init__.py] [bumpversion:file:semver/__init__.py]
search = version = {current_version} search = version = '{current_version}'
replace = version = {new_version} replace = version = '{new_version}'
[semver] [semver]
main_branches = develop main_branches = develop

View File

@ -9,7 +9,7 @@ except ImportError:
# Python < 3 # Python < 3
from ConfigParser import ConfigParser from ConfigParser import ConfigParser
version = "1.0.9" version = 'develop'
# Define common exceptions; # Define common exceptions;