From 1176c65e35d017148c66844d6616e06d4773d8a0 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sun, 10 May 2020 17:23:56 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.1=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- django_codemod/__init__.py | 2 +- setup.cfg | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/django_codemod/__init__.py b/django_codemod/__init__.py index f49c69f5..db491528 100644 --- a/django_codemod/__init__.py +++ b/django_codemod/__init__.py @@ -2,4 +2,4 @@ __author__ = """Bruno Alla""" __email__ = "alla.brunoo@gmail.com" -__version__ = "0.2.1" +__version__ = "0.3.0" diff --git a/setup.cfg b/setup.cfg index 5c9545ad..f6b1306a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.3.0 commit = True tag = True @@ -15,11 +15,11 @@ long_description = file:README.md long_description_content_type = text/markdown keywords = django, codemod, libCST url = https://django-codemod.readthedocs.io -project_urls = +project_urls = Source = https://github.com/browniebroke/django-codemod Documentation = https://django-codemod.readthedocs.io Travis CI = https://travis-ci.com/browniebroke/django-codemod -classifiers = +classifiers = Development Status :: 2 - Pre-Alpha Intended Audience :: Developers License :: OSI Approved :: MIT License @@ -34,13 +34,13 @@ python_requires = >=3.6 packages = find: include_package_data = true zip_safe = false -install_requires = +install_requires = libcst -test_require = +test_require = pytest>=3 [options.packages.find] -include = +include = django_codemod django_codemod.*