diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2019-10-11 10:56:53 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-10-11 10:57:58 -0400 |
commit | 46b8945cd33610345924ca1a43affe30cf592c95 (patch) | |
tree | 03790d874869cc62d6ffae9be1291879b62fffb4 | |
parent | e21cbb2a7d8f4de08dea714f1378136d8e8e1e8f (diff) |
release: Update NEWS and bump version for 1.23.1 releasev1.23.1
-rw-r--r-- | NEWS | 59 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 59 insertions, 2 deletions
@@ -1,7 +1,64 @@ | |||
1 | ========== | 1 | ========== |
2 | EFL 1.23.0 | 2 | EFL 1.23.1 |
3 | ========== | 3 | ========== |
4 | 4 | ||
5 | Changes since 1.23.0: | ||
6 | --------------------- | ||
7 | |||
8 | Fixes: | ||
9 | |||
10 | * docs: enable compression for tar file and avoid file name clash | ||
11 | * efl_ui/bg: unset finger_size multiplier during construction (T8304) | ||
12 | * meson: pass correct PACKAGE_DATA_DIR (T8304) | ||
13 | * doc: improve colorselector preview (T8304) | ||
14 | * docs: fix elementary group name in docs | ||
15 | * efl_ui_video: bring back Elm_video doxygen group for docs | ||
16 | * evil: bring back doxygen intro page for evil library | ||
17 | * evil: remove stray x character from docs section | ||
18 | * evil: make it clear in the docs that this library is private to efl | ||
19 | * elementary: Add documentatio to efl_ui_layout_factory.eo (T7717) | ||
20 | * docs: Fix problems with monospaced text | ||
21 | * csharp: More updated docs to 1.23. (T8293) | ||
22 | * evas: silence compiler warning in textblock | ||
23 | * efl_ui_animation_view : Put @beta on Efl.Ui.Animation_View_State | ||
24 | * csharp: Standardizing doc tag. | ||
25 | * ecore : fix incorrect size of expression for coverity | ||
26 | * c: coverity: resource leaked when using realloc. (CID1404749, CID1404741) | ||
27 | * efl_ui_datepicker: no need to delete the manager here | ||
28 | * efl_ui_image: fix backward compatibility issue | ||
29 | * eldbus: properly call parent finalize during creation of Eldbus.Model_Method. | ||
30 | * eldbus: Eldbus_Proxy require to handle self desctruction as refcounting doesn't fully protect. | ||
31 | * eldbus: connection are destroyed on invalidate, there is no point for any object to not cleanup on invalidate. | ||
32 | * eldbus: properly cleanup local variable during destruction. | ||
33 | * docs: Remove redundant documentation | ||
34 | * ci: fix return value warning in test build code | ||
35 | * efl_ui/win: fix max size hint eval (T8304) | ||
36 | * efl_ui/win: initialize max size hints to -1 during constructor | ||
37 | * csharp: Add some docs to MVVM infrastructure | ||
38 | * csharp: Do not use the System Bus for testing. (T8313) | ||
39 | * csharp: removing extra // (T8293) | ||
40 | * csharp: updating eina_accessor docs and hide api. (T8293) | ||
41 | * csharp: updating eina_binbuf docs and hide api. (T8293) | ||
42 | * efl_ui/selection_manager: be explicit with sizeof() usage (CID1385141) | ||
43 | * tests/position_manager: initialize variable in declaration (CID1404747) | ||
44 | * examples/emotion: remove dead code (CID1400928) | ||
45 | * csharp: updating eina_inarray docs and hide api. (T8293) | ||
46 | * csharp: updating eina_inlist docs and hide api. (T8293) | ||
47 | * csharp: updating eina_iterator docs and hide api. (T8293) | ||
48 | * elm: fix legacy callback names. | ||
49 | * csharp: Document eina_value.cs (T8293) | ||
50 | * csharp: Fix docs and hide stuff from stringshare. (T8293) | ||
51 | * csharp: Fix doc and hide stuff from strbuf. (T8293) | ||
52 | * csharp: Add missing docs to slice. (T8292) | ||
53 | * ecore_con: destructor are always called when finalize return NULL. | ||
54 | * ecore_con: do not crash in test if nothing is returned by Ecore_Con_Url. | ||
55 | * ecore_con: use only Eina_Magic infrastructure for set and check in Ecore_Con. | ||
56 | * cv: Switch to safe 32/64 bits printf masks | ||
57 | * efl_canvas_animation_player: fix double free | ||
58 | * evas/language: #ifdef guard variable which is only used inside #ifdef | ||
59 | * efl_ui_panes: fix not to consider content min size for legacy panes | ||
60 | |||
61 | |||
5 | Changes since 1.22.0: | 62 | Changes since 1.22.0: |
6 | --------------------- | 63 | --------------------- |
7 | 64 | ||
diff --git a/meson.build b/meson.build index 1991324..10972f7 100644 --- a/meson.build +++ b/meson.build | |||
@@ -1,5 +1,5 @@ | |||
1 | project('efl', ['c','cpp'], | 1 | project('efl', ['c','cpp'], |
2 | version: '1.23.0', | 2 | version: '1.23.1', |
3 | default_options : ['buildtype=release', 'cpp_std=c++11'], | 3 | default_options : ['buildtype=release', 'cpp_std=c++11'], |
4 | meson_version : '>=0.47' | 4 | meson_version : '>=0.47' |
5 | ) | 5 | ) |