From 32025c7b05522baa319d4989a16b8e3fa052604e Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Mon, 21 Dec 2020 11:15:34 +0100 Subject: [PATCH] Release 0.1.1 --- HISTORY.rst | 15 ++++++++++++ README.rst | 10 ++++---- app_enabler/__init__.py | 2 +- changes/15.feature | 1 - changes/17.bugfix | 1 - setup.cfg | 54 ++++++++++++++++++++--------------------- 6 files changed, 48 insertions(+), 35 deletions(-) delete mode 100644 changes/15.feature delete mode 100644 changes/17.bugfix diff --git a/HISTORY.rst b/HISTORY.rst index c143d33..058217a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,21 @@ History .. towncrier release notes start +0.1.1 (2020-12-21) +================== + +Features +-------- + +- Add codeql action (#15) + + +Bugfixes +-------- + +- Fix errors with urlconf patching (#17) + + 0.1.0 (2020-12-20) ================== diff --git a/README.rst b/README.rst index 8373d2e..6a77a9d 100644 --- a/README.rst +++ b/README.rst @@ -6,9 +6,9 @@ App Enabler |Gitter| |PyPiVersion| |PyVersion| |GAStatus| |TestCoverage| |CodeClimate| |License| -============ +************ Description -============ +************ PoC autoconfigurator for django applications @@ -20,14 +20,14 @@ and complex (as it's easy to overlook one vital configuration parameter), replac a real benefit. Key points ----------- +================== * zero-knowledge tool to enable and configure django applications in a django project * rely on specification file shipped by the target application to patch django project configuration * not a replacement for existing package or dependencies managers (pip / poetry / pipenv / ...) Caveats -------- +================== * Project is currently just a proof of concept * No formal specification or documentation exist (yet) for addon configuration file @@ -37,7 +37,7 @@ Caveats See `usage`_ for more details. Compatible packages -------------------- +=================== `Up-to-date list of compatible packages`_ diff --git a/app_enabler/__init__.py b/app_enabler/__init__.py index 39230ee..468e590 100644 --- a/app_enabler/__init__.py +++ b/app_enabler/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" __author__ = "Iacopo Spalletti " diff --git a/changes/15.feature b/changes/15.feature deleted file mode 100644 index 24b9716..0000000 --- a/changes/15.feature +++ /dev/null @@ -1 +0,0 @@ -Add codeql action diff --git a/changes/17.bugfix b/changes/17.bugfix deleted file mode 100644 index e9e1ee9..0000000 --- a/changes/17.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix errors with urlconf patching diff --git a/setup.cfg b/setup.cfg index fb8a8f4..c57a9af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version =0.1.0 +current_version = 0.1.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) serialize = - {major}.{minor}.{patch}.{release}{relver} - {major}.{minor}.{patch} + {major}.{minor}.{patch}.{release}{relver} + {major}.{minor}.{patch} commit = True tag = True sign_tags = True @@ -13,20 +13,20 @@ message = Release {new_version} [bumpversion:part:release] optional_value = gamma values = - dev - a - b - rc - gamma + dev + a + b + rc + gamma -[bumpversion:file:meta/__init__.py] +[bumpversion:file:app_enabler/__init__.py] [metadata] name = django-app-enabler version = attr: app_enabler.__version__ url = https://github.com/nephila/django-app-enabler project_urls = - Documentation = https://django-app-enabler.readthedocs.io/ + Documentation = https://django-app-enabler.readthedocs.io/ author = Nephila author_email = info@nephila.it description = Autoconfigurator for django applications @@ -35,27 +35,27 @@ long_description_content_type = text/x-rst license = BSD license_file = LICENSE classifiers = - Development Status :: 4 - Beta - Framework :: Django - Intended Audience :: Developers - Natural Language :: English - Framework :: Django - Framework :: Django :: 2.2 - Framework :: Django :: 3.0 - Framework :: Django :: 3.1 - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 + Development Status :: 4 - Beta + Framework :: Django + Intended Audience :: Developers + Natural Language :: English + Framework :: Django + Framework :: Django :: 2.2 + Framework :: Django :: 3.0 + Framework :: Django :: 3.1 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 [options] include_package_data = True install_requires = - astor - click + astor + click setup_requires = - setuptools + setuptools packages = app_enabler python_requires = >=3.6 test_suite = pytest @@ -67,7 +67,7 @@ app_enabler = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po [options.extras_require] docs = - django<3.1 + django<3.1 [upload] repository = https://upload.pypi.org/legacy/