Skip to content

Commit

Permalink
18.7.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Jul 1, 2018
1 parent 776c4d6 commit 55eba8f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/twisted/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version('Twisted', 18, 4, 0, dev=0)
__version__ = Version('Twisted', 18, 7, 0, release_candidate=1)
__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion src/twisted/application/internet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ def __init__(self, endpoint, factory, retryPolicy=None, clock=None,
fire. Otherwise its successful return value is consumed, but
ignored.
Present Since Twisted NEXT
Present Since Twisted 18.7.0rc1
@type prepareConnection: L{callable}
Expand Down
6 changes: 3 additions & 3 deletions src/twisted/runner/procmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _Process(object):
env = attr.ib(default=attr.Factory(dict))
cwd = attr.ib(default=None)

@deprecate.deprecated(incremental.Version("Twisted", "NEXT", 0, 0))
@deprecate.deprecated(incremental.Version('Twisted', 18, 7, 0, release_candidate=1))
def toTuple(self):
"""
Convert process to tuple.
Expand Down Expand Up @@ -163,7 +163,7 @@ def __init__(self, reactor=_reactor):
self.restart = {}


@deprecate.deprecatedProperty(incremental.Version("Twisted", "NEXT", 0, 0))
@deprecate.deprecatedProperty(incremental.Version('Twisted', 18, 7, 0, release_candidate=1))
def processes(self):
"""
Processes as dict of tuples
Expand All @@ -174,7 +174,7 @@ def processes(self):
for name, process in self._processes.items()}


@deprecate.deprecated(incremental.Version("Twisted", "NEXT", 0, 0))
@deprecate.deprecated(incremental.Version('Twisted', 18, 7, 0, release_candidate=1))
def __getstate__(self):
dct = service.Service.__getstate__(self)
del dct['_reactor']
Expand Down

0 comments on commit 55eba8f

Please sign in to comment.