Skip to content
This repository was archived by the owner on Aug 29, 2019. It is now read-only.

Commit 1f871cd

Browse files
committed
Merge pull request #12 from aweber/broadcast-stats
Broadcast stats
2 parents c3e5b5d + f18054d commit 1f871cd

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Changelog
22
---------
3+
2013-01-03: v1.1.4
4+
* Support version 1.0.17 of the API. (Broadcast Stats)
5+
* See https://labs.aweber.com/docs/changelog for details
6+
* See https://labs.aweber.com/snippets/campaigns for code snippets and documentation
7+
38
2012-12-10: v1.1.3
49
* Added a parameter to the Move Subscriber method for last followup message number sent.
510
* to support version 1.0.16 of the API. See https://labs.aweber.com/docs/changelog

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2010-2011, AWeber Communications, Inc.
1+
Copyright (c) 2010-2013, AWeber Communications, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

aweber_api/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class AWeberBase(object):
1515
"""
1616
collections_map = {
1717
'account' : ['lists', 'integrations'],
18-
'broadcast_campaign' : ['links', 'messages'],
18+
'broadcast_campaign' : ['links', 'messages', 'stats'],
1919
'component': [],
2020
'custom_field': [],
21-
'followup_campaign' : ['links', 'messages'],
21+
'followup_campaign' : ['links', 'messages', 'stats'],
2222
'integration': [],
2323
'link' : ['clicks'],
2424
'list' : ['campaigns', 'custom_fields', 'subscribers',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='aweber_api',
11-
version='1.1.3',
11+
version='1.1.4',
1212
author='AWeber Dev Team',
1313
author_email='api@aweber.com',
1414
maintainer='AWeber API Team',

0 commit comments

Comments
 (0)