From 7fd49700082b217ab254bbc6ae4ca72404985f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Sun, 23 Oct 2022 18:25:14 +0200 Subject: [PATCH] Bump v0.10.0 -> v0.11.0 --- setup.cfg | 2 +- setup.py | 2 +- sumy/__init__.py | 2 +- tasks.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 3950d9a..c121996 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.11.0 commit = false tag = false diff --git a/setup.py b/setup.py index 55ffe55..a6e2dbe 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # https://blog.ionelmc.ro/presentations/packaging/ setup( name="sumy", - version="0.10.0", + version="0.11.0", description="Module for automatic summarization of text documents and HTML pages.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/sumy/__init__.py b/sumy/__init__.py index 83c4b43..d851e88 100644 --- a/sumy/__init__.py +++ b/sumy/__init__.py @@ -4,4 +4,4 @@ from __future__ import division, print_function, unicode_literals __author__ = "Michal Belica" -__version__ = "0.10.0" +__version__ = "0.11.0" diff --git a/tasks.py b/tasks.py index b6d4d51..692b975 100644 --- a/tasks.py +++ b/tasks.py @@ -31,5 +31,5 @@ def bump(context, version="patch"): @task def docker(context): - context.run("docker build --no-cache --rm=true --tag misobelica/sumy:latest -t misobelica/sumy:0.10.0 .") + context.run("docker build --no-cache --rm=true --tag misobelica/sumy:latest -t misobelica/sumy:0.11.0 .") context.run("docker push misobelica/sumy --all-tags")