-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ language: python | |
|
||
python: | ||
- 2.7 | ||
- 3.4 | ||
- 3.5 | ||
- 3.6 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,22 @@ | ||
Changelog | ||
--------- | ||
|
||
0.3.0 | ||
~~~~~ | ||
|
||
Improvements: | ||
|
||
* Added `Django==2.0` | ||
* Removed old versions of `Django` from test matrix | ||
* Removed `python3.4` from test matrix | ||
* Documentation updates | ||
* Adds more `flake8` plugins to enforce strict style | ||
|
||
Bugs: | ||
|
||
* Fixes Windows problems via `#21 <https://github.com/sobolevn/django-split-settings/pull/21>`_ | ||
|
||
|
||
0.2.5 | ||
~~~~~ | ||
|
||
|
@@ -17,6 +33,7 @@ Bugs: | |
|
||
* Updated `README.rst` to be compatible with `PyPI` | ||
|
||
|
||
0.2.4 | ||
~~~~~ | ||
|
||
|
@@ -30,6 +47,7 @@ Bugs: | |
* Removed `run_coveralls.py`, added `after_success` section in `.travis.yml` | ||
* Changed the `README.rst` to be shorter | ||
|
||
|
||
0.2.3 | ||
~~~~~ | ||
|
||
|
@@ -41,6 +59,7 @@ Bugs: | |
* Added tests for `[email protected]` in `tox` and `travis` | ||
* Removed `3.2` and `3.3` from `setup.py` since these versions were not tested anyway | ||
|
||
|
||
0.2.2 | ||
~~~~~ | ||
|
||
|
@@ -49,6 +68,7 @@ Bugs: | |
* Removed example | ||
* Changed how `MANIFEST.in` is defined | ||
|
||
|
||
0.2.1 | ||
~~~~~ | ||
|
||
|
@@ -58,28 +78,33 @@ Bugs: | |
* Added ``run_coveralls.py`` to work on both ``CI`` and local tests. | ||
* Style fixes. | ||
|
||
|
||
0.2.0 | ||
~~~~~ | ||
|
||
* Now ``tox`` is used for testing. | ||
* Added ``coverage`` information and badge. | ||
* Removed ``pep8`` utility, now using ``pylint``. | ||
|
||
|
||
0.1.3 | ||
~~~~~ | ||
|
||
* Python 3.5 support, Django 1.9 test-support, documentation updates. | ||
|
||
|
||
0.1.2 | ||
~~~~~ | ||
|
||
* Fixed Python 3 compatibility. Fixed `issue #7`_. | ||
|
||
|
||
0.1.1 | ||
~~~~~ | ||
|
||
* Fixed `issue #1`_: now works with Gunicorn, too | ||
|
||
|
||
0.1.0 | ||
~~~~~ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
settings files. | ||
""" | ||
|
||
__version__ = '0.2.5' | ||
__version__ = '0.3.0' | ||
|
||
__all__ = ['__version__'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters