From dd7ca4d2ade85c6df289c02ee547b37a76fbf830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lipovsk=C3=BD?= Date: Thu, 1 Oct 2020 21:46:27 +0200 Subject: [PATCH] Version 1.1.0 --- .bumpversion.cfg | 2 +- setup.py | 2 +- urlextract/urlextract_core.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ad94f6e..905c997 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0 commit = True tag = True message = Version {new_version} diff --git a/setup.py b/setup.py index ace3030..c4e6e4f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # version of URLExtract # (do not forget to change it in urlextract_core.py as well) -__version__ = '1.0.0' +__version__ = '1.1.0' def read(readme): diff --git a/urlextract/urlextract_core.py b/urlextract/urlextract_core.py index 2d5fb6a..cd6ee14 100644 --- a/urlextract/urlextract_core.py +++ b/urlextract/urlextract_core.py @@ -23,7 +23,7 @@ from urlextract.cachefile import CacheFileError, CacheFile # version of URLExtract (do not forget to change it in setup.py as well) -__version__ = '1.0.0' +__version__ = '1.1.0' # default value for maximum count of processed URLs by find_url DEFAULT_LIMIT = 10000