diff --git a/.bumpversion.toml b/.bumpversion.toml new file mode 100644 index 0000000..b6ba0a0 --- /dev/null +++ b/.bumpversion.toml @@ -0,0 +1,13 @@ +[tool.bumpversion] +current_version = "0.2.10" +commit = true +tag = true +tag_name = "{new_version}" + +[[tool.bumpversion.files]] +filename = "setup.py" +search = "version = '{current_version}'," +replace = "version = '{new_version}'," + +[[tool.bumpversion.files]] +filename = "scrapy_frontera/__init__.py" diff --git a/scrapy_frontera/__init__.py b/scrapy_frontera/__init__.py index 66d92ac..e913eb4 100644 --- a/scrapy_frontera/__init__.py +++ b/scrapy_frontera/__init__.py @@ -1 +1 @@ -__version__ = '0.2.9.1' +__version__ = '0.2.10' diff --git a/setup.py b/setup.py index ec8eda3..1f94575 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ name = 'scrapy-frontera', description = 'Featured Frontera scheduler for Scrapy', long_description = open('README.rst').read(), - version = '0.2.9.1', + version = '0.2.10', licence = 'BSD', url = 'https://github.com/scrapinghub/scrapy-frontera', maintainer = 'Scrapinghub',