Skip to content

Commit

Permalink
4.0.3 release
Browse files Browse the repository at this point in the history
Fixes an issue discovered in release testing for 4.0.2
  • Loading branch information
untergeek committed Jul 22, 2016
1 parent f5f4a5d commit b9db2a4
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Expand Up @@ -5,8 +5,11 @@ include README.rst
include Dockerfile
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-include curator *
recursive-include test *
recursive-include docs *
recursive-exclude curator *.pyc
recursive-exclude curator *.pyo
recursive-exclude docs *.pyc
recursive-exclude docs *.pyo
recursive-exclude test *.pyc
Expand Down
2 changes: 1 addition & 1 deletion curator/_version.py
@@ -1 +1 @@
__version__ = '4.0.2'
__version__ = '4.0.3'
30 changes: 30 additions & 0 deletions docs/Changelog.rst
Expand Up @@ -3,6 +3,36 @@
Changelog
=========

4.0.3 (22 July 2016)
--------------------

**General**

* 4.0.2 didn't work for ``pip`` installs due to an omission in the
MANIFEST.in file. This came up during release testing, but before the
release was fully published. As the release was never fully published, this
should not have actually affected anyone.

**Bug Fixes**

* These are the same as 4.0.2, but it was never fully released.
* All default settings are now values returned from functions instead of
constants. This was resulting in settings getting stomped on. New test
addresses the original complaint. This removes the need for ``deepcopy``.
See issue #687 (untergeek)
* Fix ``host`` vs. ``hosts`` issue in ``get_client()`` rather than the
non-functional function in ``repomgrcli.py``.
* Update versions being tested.
* Community contributed doc fixes.
* Reduced logging verbosity by making most messages debug level. #684
(untergeek)
* Fixed log whitelist behavior (and switched to blacklisting instead).
Default behavior will now filter traffic from the ``elasticsearch`` and
``urllib3`` modules.
* Fix Travis CI testing to accept some skipped tests, as needed. #695
(untergeek)
* Fix missing empty index test in snapshot action. #682 (sherzberg)

4.0.2 (22 July 2016)
--------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/index.asciidoc
@@ -1,4 +1,4 @@
:curator_version: 4.0.2
:curator_version: 4.0.3
:curator_major: 4
:es_py_version: 2.3.0
:ref: http://www.elastic.co/guide/en/elasticsearch/reference/current
Expand Down

0 comments on commit b9db2a4

Please sign in to comment.