Skip to content

Commit 444cf01

Browse files
author
Todd Radel
committed
Bump version: 0.4.8 → 0.4.9
1 parent e0d2cac commit 444cf01

19 files changed

+19
-19
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 0.4.8
4+
current_version = 0.4.9
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
66
serialize =
77
{major}.{minor}.{patch}

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.8 (2015-04-21)
11+
0.4.9 (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
@@ -2,7 +2,7 @@
22
AppDynamics REST API Library
33
============================
44

5-
Current version: 0.4.8
5+
Current version: 0.4.9
66
Released: 26-Feb-2016
77

88
.. image:: https://img.shields.io/travis/tradel/AppDynamicsREST.svg

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.8'
7+
__version__ = '0.4.9'
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.8'
21+
__version__ = '0.4.9'
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.8'
37+
__version__ = '0.4.9'
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.8'
37+
__version__ = '0.4.9'
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.8'
18+
__version__ = '0.4.9'
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.8'
19+
__version__ = '0.4.9'
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.8'
15+
__version__ = '0.4.9'
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.8'
15+
__version__ = '0.4.9'
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.8'
20+
__version__ = '0.4.9'
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.8'
19+
__version__ = '0.4.9'
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.8'
15+
__version__ = '0.4.9'
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.8'
15+
__version__ = '0.4.9'
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.8'
16+
__version__ = '0.4.9'
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.8'
11+
__version__ = '0.4.9'
1212

1313

1414
args = parse_argv()

examples/usage_chart.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.8'
15+
__version__ = '0.4.9'
1616

1717
# Set up API client
1818
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
@@ -13,7 +13,7 @@
1313

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

1818

1919
class ApplicationApiTest(unittest.TestCase):

0 commit comments

Comments
 (0)