Roll-up the 1.12 release

This commit is contained in:
Davide Andreoli 2014-11-22 16:52:46 +01:00
parent 8ba699f89b
commit b6ca4649a6
5 changed files with 9 additions and 11 deletions

6
CODING
View File

@ -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/

View File

@ -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

View File

@ -1,3 +1,3 @@
__version__ = "1.11.0"
__version_info__ = ( 1, 11, 0 )
__version__ = "1.12.0"
__version_info__ = ( 1, 12, 0 )

View File

@ -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()

View File

@ -154,7 +154,7 @@ cdef class Panel(LayoutClass):
:type: double
..versionadded:: 1.12
.. versionadded:: 1.12
"""
def __set__(self, double ratio):