Skip to content

Commit 578bf58

Browse files
committed
bump to v0.3.2
1 parent 9e5fb5f commit 578bf58

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NEXT
1+
0.3.2
22
----
33
- Fix `DeprecationWarning` (thanks again to @pvinci)
44
- Drop Python 3.3 from officially-supported list of interpreters

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def install_requires():
1111

1212
setup(
1313
name="syslog-rfc5424-parser",
14-
version="0.3.1",
14+
version="0.3.2",
1515
author="James Brown",
1616
author_email="jbrown@easypost.com",
1717
url="https://github.com/easypost/syslog-rfc5424-parser",

syslog_rfc5424_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .message import SyslogMessage, ParseError
22

3-
version_info = (0, 3, 1)
3+
version_info = (0, 3, 2)
44
__version__ = '.'.join(map(str, version_info))
55
__author__ = 'James Brown <jbrown@easypost.com>'
66

0 commit comments

Comments
 (0)