Prepare the 1.21 release

This commit is contained in:
Davide Andreoli 2018-08-23 19:07:46 +02:00
parent 7c555cc9da
commit d25784cca8
2 changed files with 18 additions and 7 deletions

View File

@ -1,15 +1,26 @@
===================
XXXX-XX-XX v1.21.0
2018-08-24 v1.21.0
===================
BREAKS:
* systray.pxi do not work anymore as the widget has been removed from efl.
(commented in efl/elementary/__init__.pyx)
TODO FIXME... we still need to decide what to do with this breakage,
maybe an empty api with just a break notice? in this way apps using
systray will still run (not crash)
The widget has been completly removed and the function elm_need_systray
now always return False that means systray is not available.
Apologies for the inconvenient.
Changes:
* Switched to Cython 0.28.4 for the tarball generation, should fix build
issues with python3.7
Additions:
* ecore.ECORE_EXE_ISOLATE_IO
* edje.part_text_prediction_hint_hash_del
* edje.part_text_prediction_hint_hash_set
* elm.Entry.prediction_hint_hash_del
* elm.Entry.prediction_hint_hash_set
* elm.Ctxpopup.item_insert_after
* elm.Ctxpopup.item_insert_before
===================

View File

@ -20,5 +20,5 @@
# pre-release: "1.13.0-beta1" ( 1, 13, 0 )
# release: "1.13.0" ( 1, 13, 0 )
__version__ = "1.20.99"
__version_info__ = ( 1, 20, 99 )
__version__ = "1.21.0"
__version_info__ = ( 1, 21, 0 )