Skip to content

Commit

Permalink
publish 3.0.19 to Pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesthk committed Jun 13, 2023
1 parent 97a39a6 commit 29e16c9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![mailchimp3 v3.0.18 on PyPi](https://img.shields.io/pypi/v/mailchimp3.svg)](https://pypi.python.org/pypi/mailchimp3)
[![mailchimp3 v3.0.19 on PyPi](https://img.shields.io/pypi/v/mailchimp3.svg)](https://pypi.python.org/pypi/mailchimp3)
![MIT license](https://img.shields.io/badge/licence-MIT-blue.svg)
![Stable](https://img.shields.io/badge/status-stable-green.svg)

Expand Down Expand Up @@ -485,7 +485,8 @@ above with the name `client`.

#### List Activity

client.lists.activity.all(list_id='')
client.lists.activity.all(list_id='', subscriber_hash='')
client.lists.activity.feed(list_id='', subscriber_hash='')

#### List Clients

Expand Down
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
|mailchimp3 v3.0.18 on PyPi| |MIT license| |Stable|
|mailchimp3 v3.0.19 on PyPi| |MIT license| |Stable|

python-mailchimp-api
====================
Expand Down Expand Up @@ -651,7 +651,8 @@ List Activity

::

client.lists.activity.all(list_id='')
client.lists.activity.all(list_id='', subscriber_hash='')
client.lists.activity.feed(list_id='', subscriber_hash='')

List Clients
^^^^^^^^^^^^
Expand Down Expand Up @@ -983,7 +984,7 @@ License

The project is licensed under the MIT License.

.. |mailchimp3 v3.0.18 on PyPi| image:: https://img.shields.io/pypi/v/mailchimp3.svg
.. |mailchimp3 v3.0.19 on PyPi| image:: https://img.shields.io/pypi/v/mailchimp3.svg
:target: https://pypi.python.org/pypi/mailchimp3
.. |MIT license| image:: https://img.shields.io/badge/licence-MIT-blue.svg
.. |Stable| image:: https://img.shields.io/badge/status-stable-green.svg
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='mailchimp3',
version='3.0.18',
version='3.0.19',
description='A python client for v3 of MailChimp API',
long_description=long_description,
url='https://github.com/charlesthk/python-mailchimp',
Expand All @@ -31,10 +31,17 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='mailchimp api v3 client wrapper',
packages=find_packages(),
Expand Down

0 comments on commit 29e16c9

Please sign in to comment.