Skip to content

Commit c42826d

Browse files
committed
Release v3.0.2
1 parent 1198952 commit c42826d

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

CHANGELOG.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
Changelog
22
*********
33

4-
`3.x.x`_ (YYYY-MM-DD)
5-
--------------------------
4+
`3.0.2`_ (2017-05-12)
5+
---------------------
66

77
- Initial publication on PyPI
88

9-
.. _3.x.x: https://github.com/lgrahl/threema-msgapi-sdk-python/compare/e982c74cbe564c76cc58322d3154916ee7f6863b...v3.x.x
10-
9+
.. _3.0.2: https://github.com/lgrahl/threema-msgapi-sdk-python/compare/e982c74cbe564c76cc58322d3154916ee7f6863b...v3.0.2

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Lennart Grahl
3+
Copyright (c) 2017 Lennart Grahl
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def read(file):
7979

8080
# PyPI metadata
8181
author='Lennart Grahl',
82-
author_email='lennart.grahl@threema.ch',
82+
author_email='lennart.grahl@gmail.com',
8383
description=('An API for the Threema gateway service to send and receive'
8484
'messages including text, images, files and delivery reports.'),
8585
long_description=long_description,

threema/gateway/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
2020
The mode that you can use depends on the way your account was set up.
2121
22-
.. moduleauthor:: Lennart Grahl <lennart.grahl@threema.ch>
22+
.. moduleauthor:: Lennart Grahl <lennart.grahl@gmail.com>
2323
"""
2424
import itertools
2525

@@ -28,9 +28,9 @@
2828
# noinspection PyUnresolvedReferences
2929
from .exception import * # noqa
3030

31-
__author__ = 'Lennart Grahl <lennart.grahl@threema.ch>'
31+
__author__ = 'Lennart Grahl <lennart.grahl@gmail.com>'
3232
__status__ = 'Production'
33-
__version__ = '3.0.1'
33+
__version__ = '3.0.2'
3434
feature_level = 3
3535

3636
__all__ = tuple(itertools.chain(

0 commit comments

Comments
 (0)