diff --git a/country_list/__init__.py b/country_list/__init__.py index 1a1073d..0764d3e 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.2.1" +__version__ = "1.0.0" __all__ = ["available_languages", "countries_for_language"] diff --git a/setup.cfg b/setup.cfg index 15f158c..bee88dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 1.0.0 commit = True tag = True @@ -18,4 +18,3 @@ exclude = docs max-line-length = 88 [aliases] - diff --git a/setup.py b/setup.py index 749e14d..64e6d4e 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.2.1", + version="1.0.0", zip_safe=False, )