Skip to content

Commit 07d95fa

Browse files
author
James Socol
committed
Version 0.4.0.
- Update included text files. - Add AUTHORS and CHANGES.
1 parent d02a0ff commit 07d95fa

5 files changed

Lines changed: 33 additions & 4 deletions

File tree

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Lead Developer:
2+
- James Socol <[email protected]>
3+
4+
Contributors:
5+
- Jeff Balogh <[email protected]>
6+
- Andy McKay <[email protected]>
7+
- Daniel Holz <[email protected]>

CHANGES

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Statsd Changelog
2+
================
3+
4+
Version 0.4.0
5+
-------------
6+
7+
- Look up IP addresses once per client instance.
8+
- Support IPv6.
9+
10+
11+
Version 0.3.0
12+
-------------
13+
14+
- Improve StatsClient.timer.
15+
- Remove nasty threadlocal stuff.
16+
- Return result of StatsClient.timer.
17+
18+
19+
Version 0.2.0
20+
-------------
21+
22+
- Optional prefix for all stats.
23+
- Introduce StatsClient.timer context decorator.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011, Mozilla Foundation
1+
Copyright (c) 2012, Mozilla Foundation
22
All rights reserved.
33

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

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
include LICENSE
2-
include README.rst
1+
include AUTHORS CHANGES LICENSE MANIFEST.in README.rst

statsd/__init__.py

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

1111
__all__ = ['StatsClient', 'statsd']
1212

13-
VERSION = (0, 3, 0)
13+
VERSION = (0, 4, 0)
1414
__version__ = '.'.join(map(str, VERSION))
1515

1616

0 commit comments

Comments
 (0)