Add missing versionadded directives
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 0a64d46..3c6c0fd 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -614,6 +614,8 @@
    or module body contains :term:`variable annotations <variable annotation>`
    statically.
 
+   .. versionadded:: 3.6
+
 .. opcode:: IMPORT_STAR
 
    Loads all symbols not starting with ``'_'`` directly from the module TOS to
@@ -900,6 +902,8 @@
 
    Stores TOS as ``locals()['__annotations__'][co_names[namei]] = TOS``.
 
+   .. versionadded:: 3.6
+
 
 .. opcode:: LOAD_CLOSURE (i)