Merge pull request #550 from theanalyst/doc-version-fix

Fix versionadded in docs to 0.10.0 release
This commit is contained in:
Paul Tagliamonte 2014-04-10 14:26:22 -04:00
commit 5de39a4e1d
4 changed files with 14 additions and 14 deletions

View File

@ -2,7 +2,7 @@
loop/recur loop/recur
========== ==========
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
The loop/recur macro gives programmers a simple way to use tail-call The loop/recur macro gives programmers a simple way to use tail-call
optimization (TCO) in their Hy code. optimization (TCO) in their Hy code.

View File

@ -2,7 +2,7 @@
defmulti defmulti
======== ========
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
`defmulti` lets you arity-overload a function by the given number of `defmulti` lets you arity-overload a function by the given number of
args and/or kwargs. Inspired by clojures take on `defn`. args and/or kwargs. Inspired by clojures take on `defn`.

View File

@ -43,7 +43,7 @@ behavior that's slightly unexpected in some situations.
. .
- -
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
`.` is used to perform attribute access on objects. It uses a small DSL `.` is used to perform attribute access on objects. It uses a small DSL
@ -423,7 +423,7 @@ Parameters may have following keywords in front of them:
defn-alias / defun-alias defn-alias / defun-alias
------------------------ ------------------------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
The `defn-alias` and `defun-alias` macros are much like `defn`_ above, The `defn-alias` and `defun-alias` macros are much like `defn`_ above,
with the difference that instead of defining a function with a single with the difference that instead of defining a function with a single
@ -705,7 +705,7 @@ the `if` form is used to conditionally select code to be executed. It has to
contain the condition block and the block to be executed if the condition contain the condition block and the block to be executed if the condition
evaluates `True`. Optionally it may contain a block that is executed in case evaluates `True`. Optionally it may contain a block that is executed in case
the evaluation of the condition is `False`. The `if-not` form (*new in the evaluation of the condition is `False`. The `if-not` form (*new in
0.9.13*) is similar, but the first block after the test will be 0.10.0*) is similar, but the first block after the test will be
executed when the test fails, while the other, conditional one, when executed when the test fails, while the other, conditional one, when
the test succeeds - opposite of the order of the `if` form. the test succeeds - opposite of the order of the `if` form.
@ -1232,7 +1232,7 @@ infinite series without consuming infinite amount of memory.
zipwith zipwith
------- -------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
`zipwith` zips multiple lists and maps the given function over the result. It is `zipwith` zips multiple lists and maps the given function over the result. It is
equilavent to calling ``zip``, followed by calling ``map`` on the result. equilavent to calling ``zip``, followed by calling ``map`` on the result.

View File

@ -11,7 +11,7 @@ Core Functions
coll? coll?
----- -----
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(coll? x)`` Usage: ``(coll? x)``
@ -32,7 +32,7 @@ Returns true if argument is iterable and not a string.
cons cons
---- ----
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(cons a b)`` Usage: ``(cons a b)``
@ -52,7 +52,7 @@ Returns a fresh :ref:`cons cell <hycons>` with car `a` and cdr `b`.
cons? cons?
----- -----
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(cons? foo)`` Usage: ``(cons? foo)``
@ -99,7 +99,7 @@ Raises ``TypeError`` if ``(not (numeric? x))``.
disassemble disassemble
----------- -----------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(disassemble tree &optional [codegen false])`` Usage: ``(disassemble tree &optional [codegen false])``
@ -143,7 +143,7 @@ Return True if ``coll`` is empty, i.e. ``(= 0 (len coll))``.
every? every?
------ ------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(every? pred coll)`` Usage: ``(every? pred coll)``
@ -379,7 +379,7 @@ arguments. If the argument list only has one element, return it.
macroexpand macroexpand
----------- -----------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(macroexpand form)`` Usage: ``(macroexpand form)``
@ -398,7 +398,7 @@ Returns the full macro expansion of form.
macroexpand-1 macroexpand-1
------------- -------------
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(macroexpand-1 form)`` Usage: ``(macroexpand-1 form)``
@ -601,7 +601,7 @@ Return the second member of ``coll``. Equivalent to
some some
---- ----
.. versionadded:: 0.9.13 .. versionadded:: 0.10.0
Usage: ``(some pred coll)`` Usage: ``(some pred coll)``