summaryrefslogtreecommitdiff
path: root/alembic/script
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-01-18 15:27:01 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2021-01-18 15:27:01 -0500
commit9ec084aa042e0007b1abc88f8c0106bac184ddd4 (patch)
tree700b8e4ec253ba49132eed9a672e7f5c7dc21788 /alembic/script
parentf86c338d7fc2cacaf479f5e75b1476452d381ebb (diff)
downloadalembic-9ec084aa042e0007b1abc88f8c0106bac184ddd4.tar.gz
remove all .. version(?:changed|added):: prior to 1.0
Change-Id: I2a1a0c273adc871b12e13d7f913609fe1122dab3
Diffstat (limited to 'alembic/script')
-rw-r--r--alembic/script/base.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/alembic/script/base.py b/alembic/script/base.py
index 363895c..a9b5705 100644
--- a/alembic/script/base.py
+++ b/alembic/script/base.py
@@ -205,10 +205,6 @@ class ScriptDirectory(object):
all head revisions. May also be "head" to indicate a single
head revision.
- .. versionchanged:: 0.7.0 the "head" identifier now refers to
- the head of a non-branched repository only; use "heads" to
- refer to the set of all head branches simultaneously.
-
"""
with self._catch_revision_errors(start=base, end=head):
for rev in self.revision_map.iterate_revisions(
@@ -220,8 +216,6 @@ class ScriptDirectory(object):
"""Return the :class:`.Script` instance with the given rev identifier,
symbolic name, or sequence of identifiers.
- .. versionadded:: 0.7.0
-
"""
with self._catch_revision_errors():
return self.revision_map.get_revisions(id_)
@@ -347,8 +341,6 @@ class ScriptDirectory(object):
This is the revision number of all scripts that
have a ``down_revision`` of None.
- .. versionadded:: 0.7.0
-
"""
return list(self.revision_map.bases)
@@ -556,9 +548,6 @@ class ScriptDirectory(object):
:param head: the head revision to generate against. Defaults
to the current "head" if no branches are present, else raises
an exception.
-
- .. versionadded:: 0.7.0
-
:param splice: if True, allow the "head" version to not be an
actual head; otherwise, the selected head must be a head
(e.g. endpoint) revision.