Skip to content

Commit

Permalink
Bump version: 0.6.1 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ziima committed Apr 14, 2020
1 parent d68c9f3 commit cac164b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
Changelog
=========

0.7.0 (2020-04-14)
==================

- Read setting values from environment variables.
- Add ``FileSetting``.
- Fix bug causing ``NestedDictSetting`` to be always required.
- Add support for python 3.8 and Django 3.0.
- Drop support for python 2.7 and 3.4.
- Drop deprecated type checkers.
- Add type annotations.
- Raise ``ImproperlyConfigured`` from ``Setting.check`` for all errors in a setting.
- Move repository to https://github.com/pawamoy/django-appsettings.
- Clean tests.

0.6.1 (2020-03-04)
==================

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
year = '2017'
author = u'Timothee Mazzucotelli'
copyright = '{0}, {1}'.format(year, author)
version = release = u'0.6.1'
version = release = u'0.7.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
16 changes: 10 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
[bumpversion]
current_version = 0.7.0

[bdist_wheel]
universal = 1

[flake8]
max-line-length = 120

[tool:pytest]
norecursedirs =
norecursedirs =
.git
.tox
.env
dist
build
south_migrations
migrations
python_files =
python_files =
test_*.py
*_test.py
tests.py
addopts =
addopts =
-rxEfsw
--strict
--doctest-modules
Expand All @@ -40,21 +43,21 @@ include_trailing_comma = True
[bumpversion:file:docs/conf.py]

[coverage:paths]
source =
source =
src/appsettings
*/site-packages/appsettings

[coverage:run]
branch = true
source =
source =
appsettings
tests
parallel = true

[coverage:report]
show_missing = true
precision = 2
omit =
omit =
*migrations*
tests/*

Expand All @@ -69,3 +72,4 @@ ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def read(*names, **kwargs):

setup(
name='django-app-settings',
version='0.6.1',
version='0.7.0',
license='ISC',
description='Application settings helper for Django apps.',
long_description='%s\n%s' % (
Expand Down

0 comments on commit cac164b

Please sign in to comment.