Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 27, 2020
1 parent a36541c commit 7a0fe6e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 7 deletions.
17 changes: 17 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ History

.. towncrier release notes start
0.2.0 (2020-12-27)
==================

Features
--------

- Add CLI utility (#20)


Bugfixes
--------

- Close resource_stream file pointer (#19)
- Fix importing include multiple times in urlconf (#21)
- Add test to verify no multiple urlconf are added (#25)


0.1.1 (2020-12-21)
==================

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.1"
__version__ = "0.2.0"
__author__ = "Iacopo Spalletti <[email protected]>"
1 change: 0 additions & 1 deletion changes/19.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/20.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
Expand Down Expand Up @@ -71,7 +71,7 @@ docs =

[options.entry_points]
console_scripts =
django-enabler = app_enabler.__main__:execute
django-enabler = app_enabler.__main__:execute

[upload]
repository = https://upload.pypi.org/legacy/
Expand Down

0 comments on commit 7a0fe6e

Please sign in to comment.