Skip to content

Commit dd25749

Browse files
author
Todd Radel
committed
Bump version: 0.4.2 → 0.4.3
1 parent ea83371 commit dd25749

19 files changed

+20
-20
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 0.4.2
4+
current_version = 0.4.3
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}
88

99
[bumpversion:file:appd/__init__.py]

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ History
88
* Included API documentation.
99
* Added support for AppDynamics REST API 2.0.
1010

11-
0.4.2 (2015-04-21)
11+
0.4.3 (2015-04-21)
1212
------------------
1313
* First release on PyPI.
1414
* Added unit test framework.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
AppDynamics REST API Library
44
============================
55

6-
Current version: 0.4.2
6+
Current version: 0.4.3
77

88
Released: 23-Apr-2015
99

appd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. moduleauthor:: Todd Radel <[email protected]>
55
"""
66

7-
__version__ = '0.4.2'
7+
__version__ = '0.4.3'
88
__author__ = 'Todd Radel <[email protected]>'
99

1010
from . import model

examples/audit.py

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

1919
__author__ = 'Todd Radel'
2020
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
21-
__version__ = '0.4.2'
21+
__version__ = '0.4.3'
2222

2323

2424
def parse_argv():

examples/backend_metrics.py

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

3535
__author__ = 'Todd Radel'
3636
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
37-
__version__ = '0.4.2'
37+
__version__ = '0.4.3'
3838

3939

4040
# The report will generate data for the 24-hour period before midnight of the current day. To change the

examples/bt_metrics.py

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

3535
__author__ = 'Todd Radel'
3636
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
37-
__version__ = '0.4.2'
37+
__version__ = '0.4.3'
3838

3939

4040
# The report will generate data for the 24-hour period before midnight of the current day. To change the

examples/dependencies.py

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

1616
__author__ = 'Todd Radel'
1717
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
18-
__version__ = '0.4.2'
18+
__version__ = '0.4.3'
1919

2020

2121
args = parse_argv()

examples/healthrule_violations.py

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

1717
__author__ = 'Todd Radel'
1818
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
19-
__version__ = '0.4.2'
19+
__version__ = '0.4.3'
2020

2121

2222
# Parse the command line arguments and initialize the client

examples/license_count.py

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

1313
__author__ = 'Todd Radel'
1414
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
15-
__version__ = '0.4.2'
15+
__version__ = '0.4.3'
1616

1717

1818
def incr(d, name, amt=1):

examples/license_count_by_app.py

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

1313
__author__ = 'Todd Radel'
1414
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
15-
__version__ = '0.4.2'
15+
__version__ = '0.4.3'
1616

1717

1818
def incr(d, name, amt=1):

examples/license_count_by_appgroup.py

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

1818
__author__ = 'Todd Radel'
1919
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
20-
__version__ = '0.4.2'
20+
__version__ = '0.4.3'
2121

2222

2323
def incr(d, name, amt=1):

examples/license_count_by_env.py

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

1717
__author__ = 'Todd Radel'
1818
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
19-
__version__ = '0.4.2'
19+
__version__ = '0.4.3'
2020

2121

2222
def incr(d, name, amt=1):

examples/license_list_hosts.py

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

1313
__author__ = 'Todd Radel'
1414
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
15-
__version__ = '0.4.2'
15+
__version__ = '0.4.3'
1616

1717

1818
def incr(d, name, amt=1):

examples/license_report_to_csv.py

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

1313
__author__ = 'Todd Radel'
1414
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
15-
__version__ = '0.4.2'
15+
__version__ = '0.4.3'
1616

1717

1818
args = parse_argv()

examples/nodelist.py

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

1414
__author__ = 'Todd Radel'
1515
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
16-
__version__ = '0.4.2'
16+
__version__ = '0.4.3'
1717

1818

1919
args = parse_argv()

examples/sample.py

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

99
__author__ = 'Todd Radel'
1010
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
11-
__version__ = '0.4.2'
11+
__version__ = '0.4.3'
1212

1313

1414
args = parse_argv()

examples/usage_chart.py

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

1515
__author__ = 'Todd Radel'
1616
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
17-
__version__ = '0.4.2'
17+
__version__ = '0.4.3'
1818

1919
# Set up API clientgit
2020
c = AppDynamicsClient(creds.url, creds.user, creds.password, creds.account)

test/test.py

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

1212
__author__ = 'Todd Radel'
1313
__copyright__ = 'Copyright (c) 2013-2015 AppDynamics Inc.'
14-
__version__ = '0.4.2'
14+
__version__ = '0.4.3'
1515

1616

1717
class ApplicationApiTest(unittest.TestCase):

0 commit comments

Comments
 (0)