Skip to content

Commit 09deda9

Browse files
committed
pypi: Release version 0.5.5.
1 parent 6e443b6 commit 09deda9

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

zulip/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6+
## [0.5.5] - 2018-09-25
7+
## Changed
8+
- Changed integrations/trello/zulip_trello.py to be a standalone script that
9+
can be run from anywhere.
10+
- Changed integrations/trello/zulip_trello.py to not rely on any external
11+
config files or logging.
12+
613
## [0.5.4] - 2018-08-31
714
## Changed
815
- Renamed `Client.get_presence()` to `Client.get_user_presence()`.

zulip/zulip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import six
4343
from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union
4444

45-
__version__ = "0.5.4"
45+
__version__ = "0.5.5"
4646

4747
logger = logging.getLogger(__name__)
4848

zulip_bots/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if False:
1111
from typing import Any, Dict, Optional
1212

13-
ZULIP_BOTS_VERSION = "0.5.4"
13+
ZULIP_BOTS_VERSION = "0.5.5"
1414
IS_PYPA_PACKAGE = False
1515

1616

zulip_botserver/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if False:
88
from typing import Any, Dict, Optional
99

10-
ZULIP_BOTSERVER_VERSION = "0.5.4"
10+
ZULIP_BOTSERVER_VERSION = "0.5.5"
1111

1212
# We should be installable with either setuptools or distutils.
1313
package_info = dict(

0 commit comments

Comments
 (0)