File tree 5 files changed +16
-13
lines changed 5 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
---------------
3
3
4
- 0.4.0 (TBD )
5
- ~~~~~~~~~~~
4
+ 0.4.0 (2018-10-13 )
5
+ ~~~~~~~~~~~~~~~~~~
6
6
7
7
* Drop support for Python 3.4 (requests is no longer compatible)
8
+ * Fix a bug with wrapping kombu's ``retry_over_time `` function with the correct signature
9
+ * Fix ``_version.py `` file to avoid naming conflicts
8
10
9
11
0.3.0 (2018-06-16)
10
12
~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 1
1
"""Module level accessible objects."""
2
- from .__version__ import __version__
3
- from .__version__ import __description__
4
- from .__version__ import __url__
5
- from .__version__ import __title__
6
- from .__version__ import __author__
7
- from .__version__ import __author_email__
8
- from .__version__ import __license__
9
- from .__version__ import __copyright__
10
- from .__version__ import __docs_copyright__
2
+ from ._version import __version__
3
+ from ._version import __description__
4
+ from ._version import __url__
5
+ from ._version import __title__
6
+ from ._version import __author__
7
+ from ._version import __author_email__
8
+ from ._version import __license__
9
+ from ._version import __copyright__
10
+ from ._version import __docs_copyright__
11
11
from .slackify import DEFAULT_OPTIONS
12
12
from .slackify import Slackify
13
13
Original file line number Diff line number Diff line change 2
2
__title__ = "celery-slack"
3
3
__description__ = "A Slack extension for Celery."
4
4
__url__ = "https://github.com/crflynn/celery-slack"
5
- __version__ = "0.3 .0"
5
+ __version__ = "0.4 .0"
6
6
__author__ = "Christopher Flynn"
7
7
__author_email__ = "crf204@gmail.com"
8
8
__license__ = "MIT"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ exclude = '''
22
22
23
23
[tool .poetry ]
24
24
name = " celery-slack"
25
- version = " 0.3 .0"
25
+ version = " 0.4 .0"
26
26
description = " A Slack extension for Celery."
27
27
authors = [" Christopher Flynn <crf204@gmail.com>" ]
28
28
readme = " README.rst"
Original file line number Diff line number Diff line change
1
+ version : 2
1
2
python :
2
3
version : 3.7
3
4
install :
You can’t perform that action at this time.
0 commit comments