Skip to content

Commit da487fa

Browse files
committed
Release version 1.1.0
1 parent 705103d commit da487fa

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_policy(VERSION 3.0)
44
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
55
include(VersioningUtils)
66

7-
SET_PROJECT_VERSION(1 0 0)
7+
SET_PROJECT_VERSION(1 1 0)
88
set(WPE_API_VERSION "0.2")
99

1010
# Before making a release, the LT_VERSION string should be modified.
@@ -14,7 +14,7 @@ set(WPE_API_VERSION "0.2")
1414
# - If binary compatibility has been broken (eg removed or changed interfaces)
1515
# change to C+1:0:0
1616
# - If the interface is the same as the previous version, change to C:R+1:A
17-
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 1 0 0)
17+
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 2 0 1)
1818

1919
project(libwpe VERSION "${PROJECT_VERSION}")
2020

NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
=========================
2+
1.1.0 - December 13, 2018
3+
=========================
4+
5+
- Support building libwpe on Windows.
6+
- New API for observing and setting the view backend state.
7+
- Added a new wpe_renderer_backend_egl_get_platform() function which can
8+
be used to obtain a value which can be passed to eglGetPlatformDisplay()
9+
and eglGetPlatformDisplayEXT().
10+
- Marked old function names containing the "backend" word as deprecated.
11+
The symbols are still available, but it is encouraged to use the new
12+
versions, e.g. prefer wpe_get_major_version() instead of
13+
wpe_backend_get_major_version().
14+
- Marked function table struct parameters passed to some API functions
15+
as "const".
16+
- Fixed headers so including <wpe-egl.h> results in <wpe.h> being included
17+
automatically in the correct order.
18+
- Make instantiation of backends more robust by checking the validity of
19+
interface pointers obtained from the backend.
20+
121
=======================
222
1.0.0 - August 21, 2018
323
=======================

0 commit comments

Comments
 (0)