commit fe88fa7dce85741f0e42bba33d5b24b2892cdd65 Author: Damian Johnson atagar@torproject.org Date: Sun Mar 16 10:41:40 2014 -0700
Don't cite features as coming in '1.1.0-dev'
I've been inconsistent when mentioning when features are introduced. Sometimes I say '1.1.0-dev' while elsewhere I say '1.2.0'. The theory on the former was that the '-dev' suffix would mean 'unreleased things'. However, we know what the next version is gonna be so we might as well just say that. --- stem/response/events.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/stem/response/events.py b/stem/response/events.py index 082ecb1..234cfde 100644 --- a/stem/response/events.py +++ b/stem/response/events.py @@ -709,7 +709,7 @@ class ORConnEvent(Event): introduced in tor version 0.1.1.1-alpha. Its id attribute was added in version 0.2.5.2-alpha.
- .. versionchanged:: 1.1.0-dev + .. versionchanged:: 1.2.0 Added the id attribute.
:var str id: connection identifier @@ -967,7 +967,7 @@ class ConnectionBandwidthEvent(Event):
The CONN_BW event was introduced in tor version 0.2.5.2-alpha.
- .. versionadded:: 1.1.0-dev + .. versionadded:: 1.2.0
:var str id: connection identifier :var stem.ConnectionType type: connection type @@ -1011,7 +1011,7 @@ class CircuitBandwidthEvent(Event):
The CIRC_BW event was introduced in tor version 0.2.5.2-alpha.
- .. versionadded:: 1.1.0-dev + .. versionadded:: 1.2.0
:var str id: circuit identifier :var long read: bytes received by tor that second @@ -1050,7 +1050,7 @@ class CellStatsEvent(Event):
The CELL_STATS event was introduced in tor version 0.2.5.2-alpha.
- .. versionadded:: 1.1.0-dev + .. versionadded:: 1.2.0
:var str id: circuit identifier :var str inbound_queue: inbound queue identifier @@ -1108,7 +1108,7 @@ class TokenBucketEmptyEvent(Event):
The TB_EMPTY event was introduced in tor version 0.2.5.2-alpha.
- .. versionadded:: 1.1.0-dev + .. versionadded:: 1.2.0
:var stem.TokenBucket bucket: bucket being refilled :var str id: connection identifier
tor-commits@lists.torproject.org