diff --git a/CODING b/CODING index 8982924..b8caf90 100644 --- a/CODING +++ b/CODING @@ -46,8 +46,7 @@ Release process instructions * Announce at enlightenment-release@lists.sourceforge.net that you are planning for the release -* Change versions in the top part of setup.py (ex: 1.9 and 1.9.0) -* Raise efl/elm min requirements +* Change versions in efl/__init__.py (ex: 1.9.0) * Update README.rst * Update the changes.html file setup.py build_doc -b changes ...and manually merge @@ -71,8 +70,7 @@ Release process instructions * Announce the release to release@lists.enlightenment.org (an alias for e-announce etc.) * Update download link on website (clone website/www.git, edit, commit, push) -* Change versions again in setup.py (ex: 1.10 and 1.9.99) -* Raise efl and elementary requirements in setup.py (to 1.9.99) +* Change versions again in efl/__init__.py (ex: 1.9.99) more info at: phab.enlightenment.org/w/release_procedure/ diff --git a/README.rst b/README.rst index 095fbe0..527a201 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ################# -PYTHON-EFL 1.11.0 +PYTHON-EFL 1.12.0 ################# EFL is a collection of libraries for handling many common tasks a diff --git a/efl/__init__.py b/efl/__init__.py index 2de166b..7059764 100644 --- a/efl/__init__.py +++ b/efl/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.11.0" -__version_info__ = ( 1, 11, 0 ) +__version__ = "1.12.0" +__version_info__ = ( 1, 12, 0 ) diff --git a/efl/elementary/general.pyx b/efl/elementary/general.pyx index eb6e6e4..6410b27 100644 --- a/efl/elementary/general.pyx +++ b/efl/elementary/general.pyx @@ -126,14 +126,14 @@ Elm_Process_State The process is in a foreground/active/running state - work as normal. - ..versionadded:: 1.12 + .. versionadded:: 1.12 .. data:: ELM_PROCESS_STATE_BACKGROUND The process is in the bacgkround, so you may want to stop animating, fetching data as often etc. - ..versionadded:: 1.12 + .. versionadded:: 1.12 .. _Elm_Sys_Notify_Closed_Reason: @@ -541,7 +541,7 @@ def process_state_get(): :return: The current process state :rtype: Elm_Process_State - .. versionadded: 1.12 + .. versionadded:: 1.12 """ return elm_process_state_get() diff --git a/efl/elementary/panel.pyx b/efl/elementary/panel.pyx index ddda5b6..b406bf6 100644 --- a/efl/elementary/panel.pyx +++ b/efl/elementary/panel.pyx @@ -154,7 +154,7 @@ cdef class Panel(LayoutClass): :type: double - ..versionadded:: 1.12 + .. versionadded:: 1.12 """ def __set__(self, double ratio):