Skip to content

Commit c79a7ea

Browse files
authored
v0.4.0 (crflynn#22)
1 parent f5fce8d commit c79a7ea

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

HISTORY.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Release History
22
---------------
33

4-
0.4.0 (TBD)
5-
~~~~~~~~~~~
4+
0.4.0 (2018-10-13)
5+
~~~~~~~~~~~~~~~~~~
66

77
* 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
810

911
0.3.0 (2018-06-16)
1012
~~~~~~~~~~~~~~~~~~

celery_slack/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
"""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__
1111
from .slackify import DEFAULT_OPTIONS
1212
from .slackify import Slackify
1313

celery_slack/__version__.py renamed to celery_slack/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__title__ = "celery-slack"
33
__description__ = "A Slack extension for Celery."
44
__url__ = "https://github.com/crflynn/celery-slack"
5-
__version__ = "0.3.0"
5+
__version__ = "0.4.0"
66
__author__ = "Christopher Flynn"
77
__author_email__ = "crf204@gmail.com"
88
__license__ = "MIT"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ exclude = '''
2222

2323
[tool.poetry]
2424
name = "celery-slack"
25-
version = "0.3.0"
25+
version = "0.4.0"
2626
description = "A Slack extension for Celery."
2727
authors = ["Christopher Flynn <crf204@gmail.com>"]
2828
readme = "README.rst"

readthedocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: 2
12
python:
23
version: 3.7
34
install:

0 commit comments

Comments
 (0)