Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.7 #8

Merged
merged 2 commits into from Apr 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## v0.2.7 (2023-04-03)
### Features
- Support Django 4.1.7 and 4.2 [#1](https://github.com/ely-as/django-envconfig/issues/1) by [@ely-as](https://github.com/ely-as) in [#4](https://github.com/ely-as/django-envconfig/pull/4).

## v0.2.6 (2022-11-09)
### Features
- Added py311 support.
Expand Down
13 changes: 11 additions & 2 deletions README.md
@@ -1,10 +1,11 @@
# django-envconfig

![Test](https://github.com/ely-as/django-envconfig/workflows/Test/badge.svg)
![Python](https://img.shields.io/pypi/pyversions/django-envconfig)
![Django](https://img.shields.io/pypi/djversions/django-envconfig)
![License](https://img.shields.io/pypi/l/django-envconfig)

![Django](https://img.shields.io/pypi/djversions/django-envconfig)
![Python](https://img.shields.io/pypi/pyversions/django-envconfig)

Configure Django using environment variables (envvars). `settings.py` optional.

## Getting started
Expand Down Expand Up @@ -84,3 +85,11 @@ such as `psql` or `pg_dump`.
`settings.py` up to date between Django versions.
- Use .env files for easy switching between environments/deployments
(e.g. dev, test and prod).

## Dependencies

- [python-dotenv](https://github.com/theskumar/python-dotenv) (BSD 3-clause license)

## License

[MIT](https://github.com/ely-as/django-envconfig/blob/main/LICENSE).
3 changes: 2 additions & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = django-envconfig
version = 0.2.6
version = 0.2.7
description = Configure Django using environment variables.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -34,6 +34,7 @@ classifiers =
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2

[options]
packages = find:
Expand Down