Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 21, 2020
1 parent 06e2867 commit 32025c7
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 35 deletions.
15 changes: 15 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================

Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ App Enabler
|Gitter| |PyPiVersion| |PyVersion| |GAStatus| |TestCoverage| |CodeClimate| |License|


============
************
Description
============
************

PoC autoconfigurator for django applications

Expand All @@ -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
Expand All @@ -37,7 +37,7 @@ Caveats
See `usage`_ for more details.

Compatible packages
-------------------
===================

`Up-to-date list of compatible packages`_

Expand Down
2 changes: 1 addition & 1 deletion app_enabler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.digital>"
1 change: 0 additions & 1 deletion changes/15.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/17.bugfix

This file was deleted.

54 changes: 27 additions & 27 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version =0.1.0
current_version = 0.1.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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/
Expand Down

0 comments on commit 32025c7

Please sign in to comment.