From 9eaa6be132fddae9275072866ce2938d9cb668ce Mon Sep 17 00:00:00 2001 From: Niels Lemmens Date: Thu, 14 Nov 2019 11:47:13 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- country_list/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/country_list/__init__.py b/country_list/__init__.py index 2f82d59..e6cc3bd 100644 --- a/country_list/__init__.py +++ b/country_list/__init__.py @@ -2,5 +2,5 @@ __author__ = "Niels Lemmens" __email__ = "draso.odin@gmail.com" -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = ["available_languages", "countries_for_language"] diff --git a/setup.cfg b/setup.cfg index 8a24bc7..2ed687b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = True diff --git a/setup.py b/setup.py index 6438233..4bf4080 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,6 @@ name="country_list", packages=find_packages(include=["country_list"]), url="https://github.com/bulv1ne/country_list", - version="0.1.3", + version="0.1.4", zip_safe=False, )